aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/Tuples/IIsWebDirTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixext/Tuples/IIsWebDirTuple.cs')
-rw-r--r--src/wixext/Tuples/IIsWebDirTuple.cs52
1 files changed, 26 insertions, 26 deletions
diff --git a/src/wixext/Tuples/IIsWebDirTuple.cs b/src/wixext/Tuples/IIsWebDirTuple.cs
index 471fe223..7f257f14 100644
--- a/src/wixext/Tuples/IIsWebDirTuple.cs
+++ b/src/wixext/Tuples/IIsWebDirTuple.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 IIsWebDir = new IntermediateTupleDefinition( 10 public static readonly IntermediateSymbolDefinition IIsWebDir = new IntermediateSymbolDefinition(
11 IisTupleDefinitionType.IIsWebDir.ToString(), 11 IisSymbolDefinitionType.IIsWebDir.ToString(),
12 new[] 12 new[]
13 { 13 {
14 new IntermediateFieldDefinition(nameof(IIsWebDirTupleFields.ComponentRef), IntermediateFieldType.String), 14 new IntermediateFieldDefinition(nameof(IIsWebDirSymbolFields.ComponentRef), IntermediateFieldType.String),
15 new IntermediateFieldDefinition(nameof(IIsWebDirTupleFields.WebRef), IntermediateFieldType.String), 15 new IntermediateFieldDefinition(nameof(IIsWebDirSymbolFields.WebRef), IntermediateFieldType.String),
16 new IntermediateFieldDefinition(nameof(IIsWebDirTupleFields.Path), IntermediateFieldType.String), 16 new IntermediateFieldDefinition(nameof(IIsWebDirSymbolFields.Path), IntermediateFieldType.String),
17 new IntermediateFieldDefinition(nameof(IIsWebDirTupleFields.DirPropertiesRef), IntermediateFieldType.String), 17 new IntermediateFieldDefinition(nameof(IIsWebDirSymbolFields.DirPropertiesRef), IntermediateFieldType.String),
18 new IntermediateFieldDefinition(nameof(IIsWebDirTupleFields.ApplicationRef), IntermediateFieldType.String), 18 new IntermediateFieldDefinition(nameof(IIsWebDirSymbolFields.ApplicationRef), IntermediateFieldType.String),
19 }, 19 },
20 typeof(IIsWebDirTuple)); 20 typeof(IIsWebDirSymbol));
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 IIsWebDirTupleFields 28 public enum IIsWebDirSymbolFields
29 { 29 {
30 ComponentRef, 30 ComponentRef,
31 WebRef, 31 WebRef,
@@ -34,46 +34,46 @@ namespace WixToolset.Iis.Tuples
34 ApplicationRef, 34 ApplicationRef,
35 } 35 }
36 36
37 public class IIsWebDirTuple : IntermediateTuple 37 public class IIsWebDirSymbol : IntermediateSymbol
38 { 38 {
39 public IIsWebDirTuple() : base(IisTupleDefinitions.IIsWebDir, null, null) 39 public IIsWebDirSymbol() : base(IisSymbolDefinitions.IIsWebDir, null, null)
40 { 40 {
41 } 41 }
42 42
43 public IIsWebDirTuple(SourceLineNumber sourceLineNumber, Identifier id = null) : base(IisTupleDefinitions.IIsWebDir, sourceLineNumber, id) 43 public IIsWebDirSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(IisSymbolDefinitions.IIsWebDir, sourceLineNumber, id)
44 { 44 {
45 } 45 }
46 46
47 public IntermediateField this[IIsWebDirTupleFields index] => this.Fields[(int)index]; 47 public IntermediateField this[IIsWebDirSymbolFields index] => this.Fields[(int)index];
48 48
49 public string ComponentRef 49 public string ComponentRef
50 { 50 {
51 get => this.Fields[(int)IIsWebDirTupleFields.ComponentRef].AsString(); 51 get => this.Fields[(int)IIsWebDirSymbolFields.ComponentRef].AsString();
52 set => this.Set((int)IIsWebDirTupleFields.ComponentRef, value); 52 set => this.Set((int)IIsWebDirSymbolFields.ComponentRef, value);
53 } 53 }
54 54
55 public string WebRef 55 public string WebRef
56 { 56 {
57 get => this.Fields[(int)IIsWebDirTupleFields.WebRef].AsString(); 57 get => this.Fields[(int)IIsWebDirSymbolFields.WebRef].AsString();
58 set => this.Set((int)IIsWebDirTupleFields.WebRef, value); 58 set => this.Set((int)IIsWebDirSymbolFields.WebRef, value);
59 } 59 }
60 60
61 public string Path 61 public string Path
62 { 62 {
63 get => this.Fields[(int)IIsWebDirTupleFields.Path].AsString(); 63 get => this.Fields[(int)IIsWebDirSymbolFields.Path].AsString();
64 set => this.Set((int)IIsWebDirTupleFields.Path, value); 64 set => this.Set((int)IIsWebDirSymbolFields.Path, value);
65 } 65 }
66 66
67 public string DirPropertiesRef 67 public string DirPropertiesRef
68 { 68 {
69 get => this.Fields[(int)IIsWebDirTupleFields.DirPropertiesRef].AsString(); 69 get => this.Fields[(int)IIsWebDirSymbolFields.DirPropertiesRef].AsString();
70 set => this.Set((int)IIsWebDirTupleFields.DirPropertiesRef, value); 70 set => this.Set((int)IIsWebDirSymbolFields.DirPropertiesRef, value);
71 } 71 }
72 72
73 public string ApplicationRef 73 public string ApplicationRef
74 { 74 {
75 get => this.Fields[(int)IIsWebDirTupleFields.ApplicationRef].AsString(); 75 get => this.Fields[(int)IIsWebDirSymbolFields.ApplicationRef].AsString();
76 set => this.Set((int)IIsWebDirTupleFields.ApplicationRef, value); 76 set => this.Set((int)IIsWebDirSymbolFields.ApplicationRef, value);
77 } 77 }
78 } 78 }
79} \ No newline at end of file 79} \ No newline at end of file