diff options
Diffstat (limited to 'src/wixext/Tuples/WixHttpUrlAceTuple.cs')
-rw-r--r-- | src/wixext/Tuples/WixHttpUrlAceTuple.cs | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/src/wixext/Tuples/WixHttpUrlAceTuple.cs b/src/wixext/Tuples/WixHttpUrlAceTuple.cs index 3e0006a0..f605c217 100644 --- a/src/wixext/Tuples/WixHttpUrlAceTuple.cs +++ b/src/wixext/Tuples/WixHttpUrlAceTuple.cs | |||
@@ -11,8 +11,7 @@ namespace WixToolset.Http | |||
11 | HttpTupleDefinitionType.WixHttpUrlAce.ToString(), | 11 | HttpTupleDefinitionType.WixHttpUrlAce.ToString(), |
12 | new[] | 12 | new[] |
13 | { | 13 | { |
14 | new IntermediateFieldDefinition(nameof(WixHttpUrlAceTupleFields.WixHttpUrlAce), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(WixHttpUrlAceTupleFields.WixHttpUrlReservationRef), IntermediateFieldType.String), |
15 | new IntermediateFieldDefinition(nameof(WixHttpUrlAceTupleFields.WixHttpUrlReservation_), IntermediateFieldType.String), | ||
16 | new IntermediateFieldDefinition(nameof(WixHttpUrlAceTupleFields.SecurityPrincipal), IntermediateFieldType.String), | 15 | new IntermediateFieldDefinition(nameof(WixHttpUrlAceTupleFields.SecurityPrincipal), IntermediateFieldType.String), |
17 | new IntermediateFieldDefinition(nameof(WixHttpUrlAceTupleFields.Rights), IntermediateFieldType.Number), | 16 | new IntermediateFieldDefinition(nameof(WixHttpUrlAceTupleFields.Rights), IntermediateFieldType.Number), |
18 | }, | 17 | }, |
@@ -26,8 +25,7 @@ namespace WixToolset.Http.Tuples | |||
26 | 25 | ||
27 | public enum WixHttpUrlAceTupleFields | 26 | public enum WixHttpUrlAceTupleFields |
28 | { | 27 | { |
29 | WixHttpUrlAce, | 28 | WixHttpUrlReservationRef, |
30 | WixHttpUrlReservation_, | ||
31 | SecurityPrincipal, | 29 | SecurityPrincipal, |
32 | Rights, | 30 | Rights, |
33 | } | 31 | } |
@@ -44,16 +42,10 @@ namespace WixToolset.Http.Tuples | |||
44 | 42 | ||
45 | public IntermediateField this[WixHttpUrlAceTupleFields index] => this.Fields[(int)index]; | 43 | public IntermediateField this[WixHttpUrlAceTupleFields index] => this.Fields[(int)index]; |
46 | 44 | ||
47 | public string WixHttpUrlAce | 45 | public string WixHttpUrlReservationRef |
48 | { | 46 | { |
49 | get => this.Fields[(int)WixHttpUrlAceTupleFields.WixHttpUrlAce].AsString(); | 47 | get => this.Fields[(int)WixHttpUrlAceTupleFields.WixHttpUrlReservationRef].AsString(); |
50 | set => this.Set((int)WixHttpUrlAceTupleFields.WixHttpUrlAce, value); | 48 | set => this.Set((int)WixHttpUrlAceTupleFields.WixHttpUrlReservationRef, value); |
51 | } | ||
52 | |||
53 | public string WixHttpUrlReservation_ | ||
54 | { | ||
55 | get => this.Fields[(int)WixHttpUrlAceTupleFields.WixHttpUrlReservation_].AsString(); | ||
56 | set => this.Set((int)WixHttpUrlAceTupleFields.WixHttpUrlReservation_, value); | ||
57 | } | 49 | } |
58 | 50 | ||
59 | public string SecurityPrincipal | 51 | public string SecurityPrincipal |