diff options
Diffstat (limited to '')
-rw-r--r-- | src/wixext/Tuples/IIsWebDirPropertiesTuple.cs | 106 |
1 files changed, 53 insertions, 53 deletions
diff --git a/src/wixext/Tuples/IIsWebDirPropertiesTuple.cs b/src/wixext/Tuples/IIsWebDirPropertiesTuple.cs index 48e2c932..42d2dead 100644 --- a/src/wixext/Tuples/IIsWebDirPropertiesTuple.cs +++ b/src/wixext/Tuples/IIsWebDirPropertiesTuple.cs | |||
@@ -3,38 +3,38 @@ | |||
3 | namespace WixToolset.Iis | 3 | namespace 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 IIsWebDirProperties = new IntermediateTupleDefinition( | 10 | public static readonly IntermediateSymbolDefinition IIsWebDirProperties = new IntermediateSymbolDefinition( |
11 | IisTupleDefinitionType.IIsWebDirProperties.ToString(), | 11 | IisSymbolDefinitionType.IIsWebDirProperties.ToString(), |
12 | new[] | 12 | new[] |
13 | { | 13 | { |
14 | new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesTupleFields.Access), IntermediateFieldType.Number), | 14 | new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesSymbolFields.Access), IntermediateFieldType.Number), |
15 | new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesTupleFields.Authorization), IntermediateFieldType.Number), | 15 | new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesSymbolFields.Authorization), IntermediateFieldType.Number), |
16 | new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesTupleFields.AnonymousUserRef), IntermediateFieldType.String), | 16 | new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesSymbolFields.AnonymousUserRef), IntermediateFieldType.String), |
17 | new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesTupleFields.IIsControlledPassword), IntermediateFieldType.Number), | 17 | new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesSymbolFields.IIsControlledPassword), IntermediateFieldType.Number), |
18 | new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesTupleFields.LogVisits), IntermediateFieldType.Number), | 18 | new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesSymbolFields.LogVisits), IntermediateFieldType.Number), |
19 | new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesTupleFields.Index), IntermediateFieldType.Number), | 19 | new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesSymbolFields.Index), IntermediateFieldType.Number), |
20 | new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesTupleFields.DefaultDoc), IntermediateFieldType.String), | 20 | new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesSymbolFields.DefaultDoc), IntermediateFieldType.String), |
21 | new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesTupleFields.AspDetailedError), IntermediateFieldType.Number), | 21 | new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesSymbolFields.AspDetailedError), IntermediateFieldType.Number), |
22 | new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesTupleFields.HttpExpires), IntermediateFieldType.String), | 22 | new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesSymbolFields.HttpExpires), IntermediateFieldType.String), |
23 | new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesTupleFields.CacheControlMaxAge), IntermediateFieldType.Number), | 23 | new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesSymbolFields.CacheControlMaxAge), IntermediateFieldType.Number), |
24 | new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesTupleFields.CacheControlCustom), IntermediateFieldType.String), | 24 | new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesSymbolFields.CacheControlCustom), IntermediateFieldType.String), |
25 | new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesTupleFields.NoCustomError), IntermediateFieldType.Number), | 25 | new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesSymbolFields.NoCustomError), IntermediateFieldType.Number), |
26 | new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesTupleFields.AccessSSLFlags), IntermediateFieldType.Number), | 26 | new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesSymbolFields.AccessSSLFlags), IntermediateFieldType.Number), |
27 | new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesTupleFields.AuthenticationProviders), IntermediateFieldType.String), | 27 | new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesSymbolFields.AuthenticationProviders), IntermediateFieldType.String), |
28 | }, | 28 | }, |
29 | typeof(IIsWebDirPropertiesTuple)); | 29 | typeof(IIsWebDirPropertiesSymbol)); |
30 | } | 30 | } |
31 | } | 31 | } |
32 | 32 | ||
33 | namespace WixToolset.Iis.Tuples | 33 | namespace WixToolset.Iis.Symbols |
34 | { | 34 | { |
35 | using WixToolset.Data; | 35 | using WixToolset.Data; |
36 | 36 | ||
37 | public enum IIsWebDirPropertiesTupleFields | 37 | public enum IIsWebDirPropertiesSymbolFields |
38 | { | 38 | { |
39 | Access, | 39 | Access, |
40 | Authorization, | 40 | Authorization, |
@@ -52,100 +52,100 @@ namespace WixToolset.Iis.Tuples | |||
52 | AuthenticationProviders, | 52 | AuthenticationProviders, |
53 | } | 53 | } |
54 | 54 | ||
55 | public class IIsWebDirPropertiesTuple : IntermediateTuple | 55 | public class IIsWebDirPropertiesSymbol : IntermediateSymbol |
56 | { | 56 | { |
57 | public IIsWebDirPropertiesTuple() : base(IisTupleDefinitions.IIsWebDirProperties, null, null) | 57 | public IIsWebDirPropertiesSymbol() : base(IisSymbolDefinitions.IIsWebDirProperties, null, null) |
58 | { | 58 | { |
59 | } | 59 | } |
60 | 60 | ||
61 | public IIsWebDirPropertiesTuple(SourceLineNumber sourceLineNumber, Identifier id = null) : base(IisTupleDefinitions.IIsWebDirProperties, sourceLineNumber, id) | 61 | public IIsWebDirPropertiesSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(IisSymbolDefinitions.IIsWebDirProperties, sourceLineNumber, id) |
62 | { | 62 | { |
63 | } | 63 | } |
64 | 64 | ||
65 | public IntermediateField this[IIsWebDirPropertiesTupleFields index] => this.Fields[(int)index]; | 65 | public IntermediateField this[IIsWebDirPropertiesSymbolFields index] => this.Fields[(int)index]; |
66 | 66 | ||
67 | public int? Access | 67 | public int? Access |
68 | { | 68 | { |
69 | get => this.Fields[(int)IIsWebDirPropertiesTupleFields.Access].AsNullableNumber(); | 69 | get => this.Fields[(int)IIsWebDirPropertiesSymbolFields.Access].AsNullableNumber(); |
70 | set => this.Set((int)IIsWebDirPropertiesTupleFields.Access, value); | 70 | set => this.Set((int)IIsWebDirPropertiesSymbolFields.Access, value); |
71 | } | 71 | } |
72 | 72 | ||
73 | public int? Authorization | 73 | public int? Authorization |
74 | { | 74 | { |
75 | get => this.Fields[(int)IIsWebDirPropertiesTupleFields.Authorization].AsNullableNumber(); | 75 | get => this.Fields[(int)IIsWebDirPropertiesSymbolFields.Authorization].AsNullableNumber(); |
76 | set => this.Set((int)IIsWebDirPropertiesTupleFields.Authorization, value); | 76 | set => this.Set((int)IIsWebDirPropertiesSymbolFields.Authorization, value); |
77 | } | 77 | } |
78 | 78 | ||
79 | public string AnonymousUserRef | 79 | public string AnonymousUserRef |
80 | { | 80 | { |
81 | get => this.Fields[(int)IIsWebDirPropertiesTupleFields.AnonymousUserRef].AsString(); | 81 | get => this.Fields[(int)IIsWebDirPropertiesSymbolFields.AnonymousUserRef].AsString(); |
82 | set => this.Set((int)IIsWebDirPropertiesTupleFields.AnonymousUserRef, value); | 82 | set => this.Set((int)IIsWebDirPropertiesSymbolFields.AnonymousUserRef, value); |
83 | } | 83 | } |
84 | 84 | ||
85 | public int? IIsControlledPassword | 85 | public int? IIsControlledPassword |
86 | { | 86 | { |
87 | get => this.Fields[(int)IIsWebDirPropertiesTupleFields.IIsControlledPassword].AsNullableNumber(); | 87 | get => this.Fields[(int)IIsWebDirPropertiesSymbolFields.IIsControlledPassword].AsNullableNumber(); |
88 | set => this.Set((int)IIsWebDirPropertiesTupleFields.IIsControlledPassword, value); | 88 | set => this.Set((int)IIsWebDirPropertiesSymbolFields.IIsControlledPassword, value); |
89 | } | 89 | } |
90 | 90 | ||
91 | public int? LogVisits | 91 | public int? LogVisits |
92 | { | 92 | { |
93 | get => this.Fields[(int)IIsWebDirPropertiesTupleFields.LogVisits].AsNullableNumber(); | 93 | get => this.Fields[(int)IIsWebDirPropertiesSymbolFields.LogVisits].AsNullableNumber(); |
94 | set => this.Set((int)IIsWebDirPropertiesTupleFields.LogVisits, value); | 94 | set => this.Set((int)IIsWebDirPropertiesSymbolFields.LogVisits, value); |
95 | } | 95 | } |
96 | 96 | ||
97 | public int? Index | 97 | public int? Index |
98 | { | 98 | { |
99 | get => this.Fields[(int)IIsWebDirPropertiesTupleFields.Index].AsNullableNumber(); | 99 | get => this.Fields[(int)IIsWebDirPropertiesSymbolFields.Index].AsNullableNumber(); |
100 | set => this.Set((int)IIsWebDirPropertiesTupleFields.Index, value); | 100 | set => this.Set((int)IIsWebDirPropertiesSymbolFields.Index, value); |
101 | } | 101 | } |
102 | 102 | ||
103 | public string DefaultDoc | 103 | public string DefaultDoc |
104 | { | 104 | { |
105 | get => this.Fields[(int)IIsWebDirPropertiesTupleFields.DefaultDoc].AsString(); | 105 | get => this.Fields[(int)IIsWebDirPropertiesSymbolFields.DefaultDoc].AsString(); |
106 | set => this.Set((int)IIsWebDirPropertiesTupleFields.DefaultDoc, value); | 106 | set => this.Set((int)IIsWebDirPropertiesSymbolFields.DefaultDoc, value); |
107 | } | 107 | } |
108 | 108 | ||
109 | public int? AspDetailedError | 109 | public int? AspDetailedError |
110 | { | 110 | { |
111 | get => this.Fields[(int)IIsWebDirPropertiesTupleFields.AspDetailedError].AsNullableNumber(); | 111 | get => this.Fields[(int)IIsWebDirPropertiesSymbolFields.AspDetailedError].AsNullableNumber(); |
112 | set => this.Set((int)IIsWebDirPropertiesTupleFields.AspDetailedError, value); | 112 | set => this.Set((int)IIsWebDirPropertiesSymbolFields.AspDetailedError, value); |
113 | } | 113 | } |
114 | 114 | ||
115 | public string HttpExpires | 115 | public string HttpExpires |
116 | { | 116 | { |
117 | get => this.Fields[(int)IIsWebDirPropertiesTupleFields.HttpExpires].AsString(); | 117 | get => this.Fields[(int)IIsWebDirPropertiesSymbolFields.HttpExpires].AsString(); |
118 | set => this.Set((int)IIsWebDirPropertiesTupleFields.HttpExpires, value); | 118 | set => this.Set((int)IIsWebDirPropertiesSymbolFields.HttpExpires, value); |
119 | } | 119 | } |
120 | 120 | ||
121 | public int? CacheControlMaxAge | 121 | public int? CacheControlMaxAge |
122 | { | 122 | { |
123 | get => this.Fields[(int)IIsWebDirPropertiesTupleFields.CacheControlMaxAge].AsNullableNumber(); | 123 | get => this.Fields[(int)IIsWebDirPropertiesSymbolFields.CacheControlMaxAge].AsNullableNumber(); |
124 | set => this.Set((int)IIsWebDirPropertiesTupleFields.CacheControlMaxAge, value); | 124 | set => this.Set((int)IIsWebDirPropertiesSymbolFields.CacheControlMaxAge, value); |
125 | } | 125 | } |
126 | 126 | ||
127 | public string CacheControlCustom | 127 | public string CacheControlCustom |
128 | { | 128 | { |
129 | get => this.Fields[(int)IIsWebDirPropertiesTupleFields.CacheControlCustom].AsString(); | 129 | get => this.Fields[(int)IIsWebDirPropertiesSymbolFields.CacheControlCustom].AsString(); |
130 | set => this.Set((int)IIsWebDirPropertiesTupleFields.CacheControlCustom, value); | 130 | set => this.Set((int)IIsWebDirPropertiesSymbolFields.CacheControlCustom, value); |
131 | } | 131 | } |
132 | 132 | ||
133 | public int? NoCustomError | 133 | public int? NoCustomError |
134 | { | 134 | { |
135 | get => this.Fields[(int)IIsWebDirPropertiesTupleFields.NoCustomError].AsNullableNumber(); | 135 | get => this.Fields[(int)IIsWebDirPropertiesSymbolFields.NoCustomError].AsNullableNumber(); |
136 | set => this.Set((int)IIsWebDirPropertiesTupleFields.NoCustomError, value); | 136 | set => this.Set((int)IIsWebDirPropertiesSymbolFields.NoCustomError, value); |
137 | } | 137 | } |
138 | 138 | ||
139 | public int? AccessSSLFlags | 139 | public int? AccessSSLFlags |
140 | { | 140 | { |
141 | get => this.Fields[(int)IIsWebDirPropertiesTupleFields.AccessSSLFlags].AsNullableNumber(); | 141 | get => this.Fields[(int)IIsWebDirPropertiesSymbolFields.AccessSSLFlags].AsNullableNumber(); |
142 | set => this.Set((int)IIsWebDirPropertiesTupleFields.AccessSSLFlags, value); | 142 | set => this.Set((int)IIsWebDirPropertiesSymbolFields.AccessSSLFlags, value); |
143 | } | 143 | } |
144 | 144 | ||
145 | public string AuthenticationProviders | 145 | public string AuthenticationProviders |
146 | { | 146 | { |
147 | get => this.Fields[(int)IIsWebDirPropertiesTupleFields.AuthenticationProviders].AsString(); | 147 | get => this.Fields[(int)IIsWebDirPropertiesSymbolFields.AuthenticationProviders].AsString(); |
148 | set => this.Set((int)IIsWebDirPropertiesTupleFields.AuthenticationProviders, value); | 148 | set => this.Set((int)IIsWebDirPropertiesSymbolFields.AuthenticationProviders, value); |
149 | } | 149 | } |
150 | } | 150 | } |
151 | } \ No newline at end of file | 151 | } \ No newline at end of file |