diff options
Diffstat (limited to 'src/wixext/Tuples/IIsAppPoolTuple.cs')
-rw-r--r-- | src/wixext/Tuples/IIsAppPoolTuple.cs | 28 |
1 files changed, 10 insertions, 18 deletions
diff --git a/src/wixext/Tuples/IIsAppPoolTuple.cs b/src/wixext/Tuples/IIsAppPoolTuple.cs index 10a00f50..d14ec7ad 100644 --- a/src/wixext/Tuples/IIsAppPoolTuple.cs +++ b/src/wixext/Tuples/IIsAppPoolTuple.cs | |||
@@ -11,11 +11,10 @@ namespace WixToolset.Iis | |||
11 | IisTupleDefinitionType.IIsAppPool.ToString(), | 11 | IisTupleDefinitionType.IIsAppPool.ToString(), |
12 | new[] | 12 | new[] |
13 | { | 13 | { |
14 | new IntermediateFieldDefinition(nameof(IIsAppPoolTupleFields.AppPool), IntermediateFieldType.String), | ||
15 | new IntermediateFieldDefinition(nameof(IIsAppPoolTupleFields.Name), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(IIsAppPoolTupleFields.Name), IntermediateFieldType.String), |
16 | new IntermediateFieldDefinition(nameof(IIsAppPoolTupleFields.Component_), IntermediateFieldType.String), | 15 | new IntermediateFieldDefinition(nameof(IIsAppPoolTupleFields.ComponentRef), IntermediateFieldType.String), |
17 | new IntermediateFieldDefinition(nameof(IIsAppPoolTupleFields.Attributes), IntermediateFieldType.Number), | 16 | new IntermediateFieldDefinition(nameof(IIsAppPoolTupleFields.Attributes), IntermediateFieldType.Number), |
18 | new IntermediateFieldDefinition(nameof(IIsAppPoolTupleFields.User_), IntermediateFieldType.String), | 17 | new IntermediateFieldDefinition(nameof(IIsAppPoolTupleFields.UserRef), IntermediateFieldType.String), |
19 | new IntermediateFieldDefinition(nameof(IIsAppPoolTupleFields.RecycleMinutes), IntermediateFieldType.Number), | 18 | new IntermediateFieldDefinition(nameof(IIsAppPoolTupleFields.RecycleMinutes), IntermediateFieldType.Number), |
20 | new IntermediateFieldDefinition(nameof(IIsAppPoolTupleFields.RecycleRequests), IntermediateFieldType.Number), | 19 | new IntermediateFieldDefinition(nameof(IIsAppPoolTupleFields.RecycleRequests), IntermediateFieldType.Number), |
21 | new IntermediateFieldDefinition(nameof(IIsAppPoolTupleFields.RecycleTimes), IntermediateFieldType.String), | 20 | new IntermediateFieldDefinition(nameof(IIsAppPoolTupleFields.RecycleTimes), IntermediateFieldType.String), |
@@ -38,11 +37,10 @@ namespace WixToolset.Iis.Tuples | |||
38 | 37 | ||
39 | public enum IIsAppPoolTupleFields | 38 | public enum IIsAppPoolTupleFields |
40 | { | 39 | { |
41 | AppPool, | ||
42 | Name, | 40 | Name, |
43 | Component_, | 41 | ComponentRef, |
44 | Attributes, | 42 | Attributes, |
45 | User_, | 43 | UserRef, |
46 | RecycleMinutes, | 44 | RecycleMinutes, |
47 | RecycleRequests, | 45 | RecycleRequests, |
48 | RecycleTimes, | 46 | RecycleTimes, |
@@ -68,22 +66,16 @@ namespace WixToolset.Iis.Tuples | |||
68 | 66 | ||
69 | public IntermediateField this[IIsAppPoolTupleFields index] => this.Fields[(int)index]; | 67 | public IntermediateField this[IIsAppPoolTupleFields index] => this.Fields[(int)index]; |
70 | 68 | ||
71 | public string AppPool | ||
72 | { | ||
73 | get => this.Fields[(int)IIsAppPoolTupleFields.AppPool].AsString(); | ||
74 | set => this.Set((int)IIsAppPoolTupleFields.AppPool, value); | ||
75 | } | ||
76 | |||
77 | public string Name | 69 | public string Name |
78 | { | 70 | { |
79 | get => this.Fields[(int)IIsAppPoolTupleFields.Name].AsString(); | 71 | get => this.Fields[(int)IIsAppPoolTupleFields.Name].AsString(); |
80 | set => this.Set((int)IIsAppPoolTupleFields.Name, value); | 72 | set => this.Set((int)IIsAppPoolTupleFields.Name, value); |
81 | } | 73 | } |
82 | 74 | ||
83 | public string Component_ | 75 | public string ComponentRef |
84 | { | 76 | { |
85 | get => this.Fields[(int)IIsAppPoolTupleFields.Component_].AsString(); | 77 | get => this.Fields[(int)IIsAppPoolTupleFields.ComponentRef].AsString(); |
86 | set => this.Set((int)IIsAppPoolTupleFields.Component_, value); | 78 | set => this.Set((int)IIsAppPoolTupleFields.ComponentRef, value); |
87 | } | 79 | } |
88 | 80 | ||
89 | public int Attributes | 81 | public int Attributes |
@@ -92,10 +84,10 @@ namespace WixToolset.Iis.Tuples | |||
92 | set => this.Set((int)IIsAppPoolTupleFields.Attributes, value); | 84 | set => this.Set((int)IIsAppPoolTupleFields.Attributes, value); |
93 | } | 85 | } |
94 | 86 | ||
95 | public string User_ | 87 | public string UserRef |
96 | { | 88 | { |
97 | get => this.Fields[(int)IIsAppPoolTupleFields.User_].AsString(); | 89 | get => this.Fields[(int)IIsAppPoolTupleFields.UserRef].AsString(); |
98 | set => this.Set((int)IIsAppPoolTupleFields.User_, value); | 90 | set => this.Set((int)IIsAppPoolTupleFields.UserRef, value); |
99 | } | 91 | } |
100 | 92 | ||
101 | public int RecycleMinutes | 93 | public int RecycleMinutes |