aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/WindowsInstaller/TableDefinitionCollection.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/WindowsInstaller/TableDefinitionCollection.cs')
-rw-r--r--src/WixToolset.Data/WindowsInstaller/TableDefinitionCollection.cs13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/WixToolset.Data/WindowsInstaller/TableDefinitionCollection.cs b/src/WixToolset.Data/WindowsInstaller/TableDefinitionCollection.cs
index e1119a68..91385d74 100644
--- a/src/WixToolset.Data/WindowsInstaller/TableDefinitionCollection.cs
+++ b/src/WixToolset.Data/WindowsInstaller/TableDefinitionCollection.cs
@@ -77,19 +77,6 @@ namespace WixToolset.Data.WindowsInstaller
77 public bool TryGet(string tableName, out TableDefinition table) => this.collection.TryGetValue(tableName, out table); 77 public bool TryGet(string tableName, out TableDefinition table) => this.collection.TryGetValue(tableName, out table);
78 78
79 /// <summary> 79 /// <summary>
80 /// Load a table definition collection from an XmlReader.
81 /// </summary>
82 /// <param name="reader">Reader to get data from.</param>
83 /// <param name="suppressSchema">Suppress xml schema validation while loading.</param>
84 /// <returns>The TableDefinitionCollection represented by the xml.</returns>
85 public static TableDefinitionCollection Load(XmlReader reader)
86 {
87 reader.MoveToContent();
88
89 return Read(reader);
90 }
91
92 /// <summary>
93 /// Adds a table definition to the collection. 80 /// Adds a table definition to the collection.
94 /// </summary> 81 /// </summary>
95 /// <param name="tableDefinition">Table definition to add to the collection.</param> 82 /// <param name="tableDefinition">Table definition to add to the collection.</param>