diff options
Diffstat (limited to 'src/wixext/Tuples/ComPlusMethodPropertyTuple.cs')
-rw-r--r-- | src/wixext/Tuples/ComPlusMethodPropertyTuple.cs | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/src/wixext/Tuples/ComPlusMethodPropertyTuple.cs b/src/wixext/Tuples/ComPlusMethodPropertyTuple.cs index 9582ff88..65b17ea4 100644 --- a/src/wixext/Tuples/ComPlusMethodPropertyTuple.cs +++ b/src/wixext/Tuples/ComPlusMethodPropertyTuple.cs | |||
@@ -3,61 +3,61 @@ | |||
3 | namespace WixToolset.ComPlus | 3 | namespace WixToolset.ComPlus |
4 | { | 4 | { |
5 | using WixToolset.Data; | 5 | using WixToolset.Data; |
6 | using WixToolset.ComPlus.Tuples; | 6 | using WixToolset.ComPlus.Symbols; |
7 | 7 | ||
8 | public static partial class ComPlusTupleDefinitions | 8 | public static partial class ComPlusSymbolDefinitions |
9 | { | 9 | { |
10 | public static readonly IntermediateTupleDefinition ComPlusMethodProperty = new IntermediateTupleDefinition( | 10 | public static readonly IntermediateSymbolDefinition ComPlusMethodProperty = new IntermediateSymbolDefinition( |
11 | ComPlusTupleDefinitionType.ComPlusMethodProperty.ToString(), | 11 | ComPlusSymbolDefinitionType.ComPlusMethodProperty.ToString(), |
12 | new[] | 12 | new[] |
13 | { | 13 | { |
14 | new IntermediateFieldDefinition(nameof(ComPlusMethodPropertyTupleFields.MethodRef), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(ComPlusMethodPropertySymbolFields.MethodRef), IntermediateFieldType.String), |
15 | new IntermediateFieldDefinition(nameof(ComPlusMethodPropertyTupleFields.Name), IntermediateFieldType.String), | 15 | new IntermediateFieldDefinition(nameof(ComPlusMethodPropertySymbolFields.Name), IntermediateFieldType.String), |
16 | new IntermediateFieldDefinition(nameof(ComPlusMethodPropertyTupleFields.Value), IntermediateFieldType.String), | 16 | new IntermediateFieldDefinition(nameof(ComPlusMethodPropertySymbolFields.Value), IntermediateFieldType.String), |
17 | }, | 17 | }, |
18 | typeof(ComPlusMethodPropertyTuple)); | 18 | typeof(ComPlusMethodPropertySymbol)); |
19 | } | 19 | } |
20 | } | 20 | } |
21 | 21 | ||
22 | namespace WixToolset.ComPlus.Tuples | 22 | namespace WixToolset.ComPlus.Symbols |
23 | { | 23 | { |
24 | using WixToolset.Data; | 24 | using WixToolset.Data; |
25 | 25 | ||
26 | public enum ComPlusMethodPropertyTupleFields | 26 | public enum ComPlusMethodPropertySymbolFields |
27 | { | 27 | { |
28 | MethodRef, | 28 | MethodRef, |
29 | Name, | 29 | Name, |
30 | Value, | 30 | Value, |
31 | } | 31 | } |
32 | 32 | ||
33 | public class ComPlusMethodPropertyTuple : IntermediateTuple | 33 | public class ComPlusMethodPropertySymbol : IntermediateSymbol |
34 | { | 34 | { |
35 | public ComPlusMethodPropertyTuple() : base(ComPlusTupleDefinitions.ComPlusMethodProperty, null, null) | 35 | public ComPlusMethodPropertySymbol() : base(ComPlusSymbolDefinitions.ComPlusMethodProperty, null, null) |
36 | { | 36 | { |
37 | } | 37 | } |
38 | 38 | ||
39 | public ComPlusMethodPropertyTuple(SourceLineNumber sourceLineNumber, Identifier id = null) : base(ComPlusTupleDefinitions.ComPlusMethodProperty, sourceLineNumber, id) | 39 | public ComPlusMethodPropertySymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(ComPlusSymbolDefinitions.ComPlusMethodProperty, sourceLineNumber, id) |
40 | { | 40 | { |
41 | } | 41 | } |
42 | 42 | ||
43 | public IntermediateField this[ComPlusMethodPropertyTupleFields index] => this.Fields[(int)index]; | 43 | public IntermediateField this[ComPlusMethodPropertySymbolFields index] => this.Fields[(int)index]; |
44 | 44 | ||
45 | public string MethodRef | 45 | public string MethodRef |
46 | { | 46 | { |
47 | get => this.Fields[(int)ComPlusMethodPropertyTupleFields.MethodRef].AsString(); | 47 | get => this.Fields[(int)ComPlusMethodPropertySymbolFields.MethodRef].AsString(); |
48 | set => this.Set((int)ComPlusMethodPropertyTupleFields.MethodRef, value); | 48 | set => this.Set((int)ComPlusMethodPropertySymbolFields.MethodRef, value); |
49 | } | 49 | } |
50 | 50 | ||
51 | public string Name | 51 | public string Name |
52 | { | 52 | { |
53 | get => this.Fields[(int)ComPlusMethodPropertyTupleFields.Name].AsString(); | 53 | get => this.Fields[(int)ComPlusMethodPropertySymbolFields.Name].AsString(); |
54 | set => this.Set((int)ComPlusMethodPropertyTupleFields.Name, value); | 54 | set => this.Set((int)ComPlusMethodPropertySymbolFields.Name, value); |
55 | } | 55 | } |
56 | 56 | ||
57 | public string Value | 57 | public string Value |
58 | { | 58 | { |
59 | get => this.Fields[(int)ComPlusMethodPropertyTupleFields.Value].AsString(); | 59 | get => this.Fields[(int)ComPlusMethodPropertySymbolFields.Value].AsString(); |
60 | set => this.Set((int)ComPlusMethodPropertyTupleFields.Value, value); | 60 | set => this.Set((int)ComPlusMethodPropertySymbolFields.Value, value); |
61 | } | 61 | } |
62 | } | 62 | } |
63 | } \ No newline at end of file | 63 | } \ No newline at end of file |