From 8d27ac8bd8eb8ec320714a0bc201b05728da2206 Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Fri, 18 Dec 2020 17:55:28 -0600 Subject: Enable XML doc. --- src/WixToolset.Data/WindowsInstaller/ColumnDefinition.cs | 1 + src/WixToolset.Data/WindowsInstaller/Field.cs | 4 ++-- src/WixToolset.Data/WindowsInstaller/Rows/SummaryInfoRowCollection.cs | 2 +- src/WixToolset.Data/WindowsInstaller/TableDefinition.cs | 1 + src/WixToolset.Data/WindowsInstaller/WindowsInstallerData.cs | 3 +-- 5 files changed, 6 insertions(+), 5 deletions(-) (limited to 'src/WixToolset.Data/WindowsInstaller') diff --git a/src/WixToolset.Data/WindowsInstaller/ColumnDefinition.cs b/src/WixToolset.Data/WindowsInstaller/ColumnDefinition.cs index de554fd8..f4dbab34 100644 --- a/src/WixToolset.Data/WindowsInstaller/ColumnDefinition.cs +++ b/src/WixToolset.Data/WindowsInstaller/ColumnDefinition.cs @@ -29,6 +29,7 @@ namespace WixToolset.Data.WindowsInstaller /// Type of modularization for column /// If the column is localizable. /// If whitespace should be preserved in a CDATA node. + /// If not saved to MSI. public ColumnDefinition(string name, ColumnType type, int length, bool primaryKey, bool nullable, ColumnCategory category, long? minValue = null, long? maxValue = null, string keyTable = null, int? keyColumn = null, string possibilities = null, string description = null, ColumnModularizeType? modularizeType = null, bool forceLocalizable = false, bool useCData = false, bool unreal = false) { this.Name = name; diff --git a/src/WixToolset.Data/WindowsInstaller/Field.cs b/src/WixToolset.Data/WindowsInstaller/Field.cs index 84e8d543..e5edd552 100644 --- a/src/WixToolset.Data/WindowsInstaller/Field.cs +++ b/src/WixToolset.Data/WindowsInstaller/Field.cs @@ -64,7 +64,6 @@ namespace WixToolset.Data.WindowsInstaller /// /// Sets the value of a particular field in the row without validating. /// - /// field index. /// Value of a field in the row. /// True if successful, false if validation failed. public bool BestEffortSet(object value) @@ -133,8 +132,9 @@ namespace WixToolset.Data.WindowsInstaller } /// - /// Validate a value for this column. + /// Validate a value for a column. /// + /// The column. /// The value to validate. /// Validated value. internal object ValidateValue(ColumnDefinition column, object value) diff --git a/src/WixToolset.Data/WindowsInstaller/Rows/SummaryInfoRowCollection.cs b/src/WixToolset.Data/WindowsInstaller/Rows/SummaryInfoRowCollection.cs index fc0410e9..4b2ce129 100644 --- a/src/WixToolset.Data/WindowsInstaller/Rows/SummaryInfoRowCollection.cs +++ b/src/WixToolset.Data/WindowsInstaller/Rows/SummaryInfoRowCollection.cs @@ -32,7 +32,7 @@ namespace WixToolset.Data.WindowsInstaller.Rows /// Gets the summary property ID for the . /// /// The row to index. - /// The summary property ID for the . + /// The summary property ID for the . protected override int GetKeyForItem(Row row) { return (int)row[0]; diff --git a/src/WixToolset.Data/WindowsInstaller/TableDefinition.cs b/src/WixToolset.Data/WindowsInstaller/TableDefinition.cs index 504c89ce..a7602d05 100644 --- a/src/WixToolset.Data/WindowsInstaller/TableDefinition.cs +++ b/src/WixToolset.Data/WindowsInstaller/TableDefinition.cs @@ -26,6 +26,7 @@ namespace WixToolset.Data.WindowsInstaller /// Column definitions for the table. /// Flag if table is unreal. /// Whether the primary key is the id of the symbol definition associated with this table. + /// The specialized type for the rows. public TableDefinition(string name, IntermediateSymbolDefinition symbolDefinition, IEnumerable columns, bool unreal = false, bool symbolIdIsPrimaryKey = false, Type strongRowType = null) { this.Name = name; diff --git a/src/WixToolset.Data/WindowsInstaller/WindowsInstallerData.cs b/src/WixToolset.Data/WindowsInstaller/WindowsInstallerData.cs index cc16bca5..8d69cd08 100644 --- a/src/WixToolset.Data/WindowsInstaller/WindowsInstallerData.cs +++ b/src/WixToolset.Data/WindowsInstaller/WindowsInstallerData.cs @@ -70,7 +70,6 @@ namespace WixToolset.Data.WindowsInstaller /// Ensure this output contains a particular table. /// /// Definition of the table that should exist. - /// Optional section to use for the table. If one is not provided, the entry section will be used. /// The table in this output. public Table EnsureTable(TableDefinition tableDefinition) { @@ -98,7 +97,7 @@ namespace WixToolset.Data.WindowsInstaller /// /// Saves an output to an XmlWriter. /// - /// XmlWriter to save to. + /// XmlWriter to save to. public void Save(XmlWriter writer) { writer.WriteStartDocument(); -- cgit v1.2.3-55-g6feb