Obsolete references to "Row" which are all now "Tuples"
Rob Mensching committed
May 22, 2019 at 00:20 UTC
6da5d258210065723a8652dedda19851eb102d78
1 file changed
+15
src/WixToolset.Extensibility/Services/IParseHelper.cs
+15
@@ -45,6 +45,9 @@ namespace WixToolset.Extensibility.Services
45
/// <param name="tableName">Name of table to create row in.</param>
46
/// <param name="identifier">Optional identifier for the row.</param>
47
/// <returns>New row.</returns>
48
+ IntermediateTuple CreateTuple(IntermediateSection section, SourceLineNumber sourceLineNumbers, string tableName, Identifier identifier = null);
49
+
50
+ [Obsolete]
51
IntermediateTuple CreateRow(IntermediateSection section, SourceLineNumber sourceLineNumbers, string tableName, Identifier identifier = null);
52
53
/// <summary>
@@ -55,6 +58,9 @@ namespace WixToolset.Extensibility.Services
58
/// <param name="tupleType">Type of tuple to create.</param>
59
/// <param name="identifier">Optional identifier for the row.</param>
60
/// <returns>New row.</returns>
61
+ IntermediateTuple CreateTuple(IntermediateSection section, SourceLineNumber sourceLineNumbers, TupleDefinitionType tupleType, Identifier identifier = null);
62
+
63
+ [Obsolete]
64
IntermediateTuple CreateRow(IntermediateSection section, SourceLineNumber sourceLineNumbers, TupleDefinitionType tupleType, Identifier identifier = null);
65
66
/// <summary>
@@ -70,6 +76,9 @@ namespace WixToolset.Extensibility.Services
76
/// <param name="sourceName">Optional source name for the directory.</param>
77
/// <param name="shortSourceName">Optional short source name for the directory.</param>
78
/// <returns>Identifier for the newly created row.</returns>
79
+ Identifier CreateDirectoryTuple(IntermediateSection section, SourceLineNumber sourceLineNumbers, Identifier id, string parentId, string name, ISet<string> sectionInlinedDirectoryIds, string shortName = null, string sourceName = null, string shortSourceName = null);
80
+
81
+ [Obsolete]
82
Identifier CreateDirectoryRow(IntermediateSection section, SourceLineNumber sourceLineNumbers, Identifier id, string parentId, string name, ISet<string> sectionInlinedDirectoryIds, string shortName = null, string sourceName = null, string shortSourceName = null);
83
84
/// <summary>
@@ -93,6 +102,9 @@ namespace WixToolset.Extensibility.Services
102
/// <param name="value">The registry entry value.</param>
103
/// <param name="componentId">The component which will control installation/uninstallation of the registry entry.</param>
104
/// <param name="escapeLeadingHash">If true, "escape" leading '#' characters so the value is written as a REG_SZ.</param>
105
+ Identifier CreateRegistryTuple(IntermediateSection section, SourceLineNumber sourceLineNumbers, RegistryRootType root, string key, string name, string value, string componentId, bool escapeLeadingHash);
106
+
107
+ [Obsolete]
108
Identifier CreateRegistryRow(IntermediateSection section, SourceLineNumber sourceLineNumbers, RegistryRootType root, string key, string name, string value, string componentId, bool escapeLeadingHash);
109
110
/// <summary>
@@ -133,6 +145,9 @@ namespace WixToolset.Extensibility.Services
145
/// <param name="parentId">Id of the parenet node.</param>
146
/// <param name="childType">Complex reference type of child</param>
147
/// <param name="childId">Id of the Child Node.</param>
148
+ void CreateWixGroupTuple(IntermediateSection section, SourceLineNumber sourceLineNumbers, ComplexReferenceParentType parentType, string parentId, ComplexReferenceChildType childType, string childId);
149
+
150
+ [Obsolete]
151
void CreateWixGroupRow(IntermediateSection section, SourceLineNumber sourceLineNumbers, ComplexReferenceParentType parentType, string parentId, ComplexReferenceChildType childType, string childId);
152
153
/// <summary>