From c1ebab9485256e5fbf4f47d20be8627fd03c68a1 Mon Sep 17 00:00:00 2001 From: Bob Arnson Date: Tue, 24 Mar 2020 13:49:28 -0400 Subject: Add XmlWriter overload. - Also fix some typos. --- src/WixToolset.Data/WindowsInstaller/Rows/PropertyRow.cs | 8 ++++---- .../WindowsInstaller/WindowsInstallerData.cs | 15 ++++++++++++--- 2 files changed, 16 insertions(+), 7 deletions(-) (limited to 'src') diff --git a/src/WixToolset.Data/WindowsInstaller/Rows/PropertyRow.cs b/src/WixToolset.Data/WindowsInstaller/Rows/PropertyRow.cs index ad5197d9..3aba5de6 100644 --- a/src/WixToolset.Data/WindowsInstaller/Rows/PropertyRow.cs +++ b/src/WixToolset.Data/WindowsInstaller/Rows/PropertyRow.cs @@ -3,12 +3,12 @@ namespace WixToolset.Data.WindowsInstaller.Rows { /// - /// Specialization of a row for the upgrade table. + /// Specialization of a row for the Property table. /// public sealed class PropertyRow : Row { /// - /// Creates an Upgrade row that belongs to a table. + /// Creates an Property row that belongs to a table. /// /// Original source lines for this row. /// Table this Upgrade row belongs to and should get its column definitions from. @@ -18,7 +18,7 @@ namespace WixToolset.Data.WindowsInstaller.Rows } /// - /// Gets and sets the upgrade code for the row. + /// Gets and sets the property name for the row. /// /// Property identifier for the row. public string Property @@ -28,7 +28,7 @@ namespace WixToolset.Data.WindowsInstaller.Rows } /// - /// Gets and sets the value for the row. + /// Gets and sets the property value for the row. /// /// Property value for the row. public string Value diff --git a/src/WixToolset.Data/WindowsInstaller/WindowsInstallerData.cs b/src/WixToolset.Data/WindowsInstaller/WindowsInstallerData.cs index 43c19d69..e30be598 100644 --- a/src/WixToolset.Data/WindowsInstaller/WindowsInstallerData.cs +++ b/src/WixToolset.Data/WindowsInstaller/WindowsInstallerData.cs @@ -85,12 +85,21 @@ namespace WixToolset.Data.WindowsInstaller { using (var writer = XmlWriter.Create(wixout.CreateDataStream(WixOutputStreamName))) { - writer.WriteStartDocument(); - this.Write(writer); - writer.WriteEndDocument(); + this.Save(writer); } } + /// + /// Saves an output to an XmlWriter. + /// + /// XmlWriter to save to. + public void Save(XmlWriter writer) + { + writer.WriteStartDocument(); + this.Write(writer); + writer.WriteEndDocument(); + } + /// /// Gets table by name. /// -- cgit v1.2.3-55-g6feb