aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/Tuples/IIsWebServiceExtensionTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixext/Tuples/IIsWebServiceExtensionTuple.cs')
-rw-r--r--src/wixext/Tuples/IIsWebServiceExtensionTuple.cs52
1 files changed, 26 insertions, 26 deletions
diff --git a/src/wixext/Tuples/IIsWebServiceExtensionTuple.cs b/src/wixext/Tuples/IIsWebServiceExtensionTuple.cs
index 82d9c82a..44922357 100644
--- a/src/wixext/Tuples/IIsWebServiceExtensionTuple.cs
+++ b/src/wixext/Tuples/IIsWebServiceExtensionTuple.cs
@@ -3,29 +3,29 @@
3namespace WixToolset.Iis 3namespace WixToolset.Iis
4{ 4{
5 using WixToolset.Data; 5 using WixToolset.Data;
6 using WixToolset.Iis.Tuples; 6 using WixToolset.Iis.Symbols;
7 7
8 public static partial class IisTupleDefinitions 8 public static partial class IisSymbolDefinitions
9 { 9 {
10 public static readonly IntermediateTupleDefinition IIsWebServiceExtension = new IntermediateTupleDefinition( 10 public static readonly IntermediateSymbolDefinition IIsWebServiceExtension = new IntermediateSymbolDefinition(
11 IisTupleDefinitionType.IIsWebServiceExtension.ToString(), 11 IisSymbolDefinitionType.IIsWebServiceExtension.ToString(),
12 new[] 12 new[]
13 { 13 {
14 new IntermediateFieldDefinition(nameof(IIsWebServiceExtensionTupleFields.ComponentRef), IntermediateFieldType.String), 14 new IntermediateFieldDefinition(nameof(IIsWebServiceExtensionSymbolFields.ComponentRef), IntermediateFieldType.String),
15 new IntermediateFieldDefinition(nameof(IIsWebServiceExtensionTupleFields.File), IntermediateFieldType.String), 15 new IntermediateFieldDefinition(nameof(IIsWebServiceExtensionSymbolFields.File), IntermediateFieldType.String),
16 new IntermediateFieldDefinition(nameof(IIsWebServiceExtensionTupleFields.Description), IntermediateFieldType.String), 16 new IntermediateFieldDefinition(nameof(IIsWebServiceExtensionSymbolFields.Description), IntermediateFieldType.String),
17 new IntermediateFieldDefinition(nameof(IIsWebServiceExtensionTupleFields.Group), IntermediateFieldType.String), 17 new IntermediateFieldDefinition(nameof(IIsWebServiceExtensionSymbolFields.Group), IntermediateFieldType.String),
18 new IntermediateFieldDefinition(nameof(IIsWebServiceExtensionTupleFields.Attributes), IntermediateFieldType.Number), 18 new IntermediateFieldDefinition(nameof(IIsWebServiceExtensionSymbolFields.Attributes), IntermediateFieldType.Number),
19 }, 19 },
20 typeof(IIsWebServiceExtensionTuple)); 20 typeof(IIsWebServiceExtensionSymbol));
21 } 21 }
22} 22}
23 23
24namespace WixToolset.Iis.Tuples 24namespace WixToolset.Iis.Symbols
25{ 25{
26 using WixToolset.Data; 26 using WixToolset.Data;
27 27
28 public enum IIsWebServiceExtensionTupleFields 28 public enum IIsWebServiceExtensionSymbolFields
29 { 29 {
30 ComponentRef, 30 ComponentRef,
31 File, 31 File,
@@ -34,46 +34,46 @@ namespace WixToolset.Iis.Tuples
34 Attributes, 34 Attributes,
35 } 35 }
36 36
37 public class IIsWebServiceExtensionTuple : IntermediateTuple 37 public class IIsWebServiceExtensionSymbol : IntermediateSymbol
38 { 38 {
39 public IIsWebServiceExtensionTuple() : base(IisTupleDefinitions.IIsWebServiceExtension, null, null) 39 public IIsWebServiceExtensionSymbol() : base(IisSymbolDefinitions.IIsWebServiceExtension, null, null)
40 { 40 {
41 } 41 }
42 42
43 public IIsWebServiceExtensionTuple(SourceLineNumber sourceLineNumber, Identifier id = null) : base(IisTupleDefinitions.IIsWebServiceExtension, sourceLineNumber, id) 43 public IIsWebServiceExtensionSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(IisSymbolDefinitions.IIsWebServiceExtension, sourceLineNumber, id)
44 { 44 {
45 } 45 }
46 46
47 public IntermediateField this[IIsWebServiceExtensionTupleFields index] => this.Fields[(int)index]; 47 public IntermediateField this[IIsWebServiceExtensionSymbolFields index] => this.Fields[(int)index];
48 48
49 public string ComponentRef 49 public string ComponentRef
50 { 50 {
51 get => this.Fields[(int)IIsWebServiceExtensionTupleFields.ComponentRef].AsString(); 51 get => this.Fields[(int)IIsWebServiceExtensionSymbolFields.ComponentRef].AsString();
52 set => this.Set((int)IIsWebServiceExtensionTupleFields.ComponentRef, value); 52 set => this.Set((int)IIsWebServiceExtensionSymbolFields.ComponentRef, value);
53 } 53 }
54 54
55 public string File 55 public string File
56 { 56 {
57 get => this.Fields[(int)IIsWebServiceExtensionTupleFields.File].AsString(); 57 get => this.Fields[(int)IIsWebServiceExtensionSymbolFields.File].AsString();
58 set => this.Set((int)IIsWebServiceExtensionTupleFields.File, value); 58 set => this.Set((int)IIsWebServiceExtensionSymbolFields.File, value);
59 } 59 }
60 60
61 public string Description 61 public string Description
62 { 62 {
63 get => this.Fields[(int)IIsWebServiceExtensionTupleFields.Description].AsString(); 63 get => this.Fields[(int)IIsWebServiceExtensionSymbolFields.Description].AsString();
64 set => this.Set((int)IIsWebServiceExtensionTupleFields.Description, value); 64 set => this.Set((int)IIsWebServiceExtensionSymbolFields.Description, value);
65 } 65 }
66 66
67 public string Group 67 public string Group
68 { 68 {
69 get => this.Fields[(int)IIsWebServiceExtensionTupleFields.Group].AsString(); 69 get => this.Fields[(int)IIsWebServiceExtensionSymbolFields.Group].AsString();
70 set => this.Set((int)IIsWebServiceExtensionTupleFields.Group, value); 70 set => this.Set((int)IIsWebServiceExtensionSymbolFields.Group, value);
71 } 71 }
72 72
73 public int Attributes 73 public int Attributes
74 { 74 {
75 get => this.Fields[(int)IIsWebServiceExtensionTupleFields.Attributes].AsNumber(); 75 get => this.Fields[(int)IIsWebServiceExtensionSymbolFields.Attributes].AsNumber();
76 set => this.Set((int)IIsWebServiceExtensionTupleFields.Attributes, value); 76 set => this.Set((int)IIsWebServiceExtensionSymbolFields.Attributes, value);
77 } 77 }
78 } 78 }
79} \ No newline at end of file 79} \ No newline at end of file