aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/Tuples/ComPlusMethodPropertyTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/wixext/Tuples/ComPlusMethodPropertyTuple.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/wixext/Tuples/ComPlusMethodPropertyTuple.cs b/src/wixext/Tuples/ComPlusMethodPropertyTuple.cs
index 8ebc3f6b..9582ff88 100644
--- a/src/wixext/Tuples/ComPlusMethodPropertyTuple.cs
+++ b/src/wixext/Tuples/ComPlusMethodPropertyTuple.cs
@@ -11,7 +11,7 @@ namespace WixToolset.ComPlus
11 ComPlusTupleDefinitionType.ComPlusMethodProperty.ToString(), 11 ComPlusTupleDefinitionType.ComPlusMethodProperty.ToString(),
12 new[] 12 new[]
13 { 13 {
14 new IntermediateFieldDefinition(nameof(ComPlusMethodPropertyTupleFields.Method_), IntermediateFieldType.String), 14 new IntermediateFieldDefinition(nameof(ComPlusMethodPropertyTupleFields.MethodRef), IntermediateFieldType.String),
15 new IntermediateFieldDefinition(nameof(ComPlusMethodPropertyTupleFields.Name), IntermediateFieldType.String), 15 new IntermediateFieldDefinition(nameof(ComPlusMethodPropertyTupleFields.Name), IntermediateFieldType.String),
16 new IntermediateFieldDefinition(nameof(ComPlusMethodPropertyTupleFields.Value), IntermediateFieldType.String), 16 new IntermediateFieldDefinition(nameof(ComPlusMethodPropertyTupleFields.Value), IntermediateFieldType.String),
17 }, 17 },
@@ -25,7 +25,7 @@ namespace WixToolset.ComPlus.Tuples
25 25
26 public enum ComPlusMethodPropertyTupleFields 26 public enum ComPlusMethodPropertyTupleFields
27 { 27 {
28 Method_, 28 MethodRef,
29 Name, 29 Name,
30 Value, 30 Value,
31 } 31 }
@@ -42,10 +42,10 @@ namespace WixToolset.ComPlus.Tuples
42 42
43 public IntermediateField this[ComPlusMethodPropertyTupleFields index] => this.Fields[(int)index]; 43 public IntermediateField this[ComPlusMethodPropertyTupleFields index] => this.Fields[(int)index];
44 44
45 public string Method_ 45 public string MethodRef
46 { 46 {
47 get => this.Fields[(int)ComPlusMethodPropertyTupleFields.Method_].AsString(); 47 get => this.Fields[(int)ComPlusMethodPropertyTupleFields.MethodRef].AsString();
48 set => this.Set((int)ComPlusMethodPropertyTupleFields.Method_, value); 48 set => this.Set((int)ComPlusMethodPropertyTupleFields.MethodRef, value);
49 } 49 }
50 50
51 public string Name 51 public string Name