aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/Tuples/IIsWebAddressTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixext/Tuples/IIsWebAddressTuple.cs')
-rw-r--r--src/wixext/Tuples/IIsWebAddressTuple.cs18
1 files changed, 5 insertions, 13 deletions
diff --git a/src/wixext/Tuples/IIsWebAddressTuple.cs b/src/wixext/Tuples/IIsWebAddressTuple.cs
index cb50b207..603f62cb 100644
--- a/src/wixext/Tuples/IIsWebAddressTuple.cs
+++ b/src/wixext/Tuples/IIsWebAddressTuple.cs
@@ -11,8 +11,7 @@ namespace WixToolset.Iis
11 IisTupleDefinitionType.IIsWebAddress.ToString(), 11 IisTupleDefinitionType.IIsWebAddress.ToString(),
12 new[] 12 new[]
13 { 13 {
14 new IntermediateFieldDefinition(nameof(IIsWebAddressTupleFields.Address), IntermediateFieldType.String), 14 new IntermediateFieldDefinition(nameof(IIsWebAddressTupleFields.WebRef), IntermediateFieldType.String),
15 new IntermediateFieldDefinition(nameof(IIsWebAddressTupleFields.Web_), IntermediateFieldType.String),
16 new IntermediateFieldDefinition(nameof(IIsWebAddressTupleFields.IP), IntermediateFieldType.String), 15 new IntermediateFieldDefinition(nameof(IIsWebAddressTupleFields.IP), IntermediateFieldType.String),
17 new IntermediateFieldDefinition(nameof(IIsWebAddressTupleFields.Port), IntermediateFieldType.String), 16 new IntermediateFieldDefinition(nameof(IIsWebAddressTupleFields.Port), IntermediateFieldType.String),
18 new IntermediateFieldDefinition(nameof(IIsWebAddressTupleFields.Header), IntermediateFieldType.String), 17 new IntermediateFieldDefinition(nameof(IIsWebAddressTupleFields.Header), IntermediateFieldType.String),
@@ -28,8 +27,7 @@ namespace WixToolset.Iis.Tuples
28 27
29 public enum IIsWebAddressTupleFields 28 public enum IIsWebAddressTupleFields
30 { 29 {
31 Address, 30 WebRef,
32 Web_,
33 IP, 31 IP,
34 Port, 32 Port,
35 Header, 33 Header,
@@ -48,16 +46,10 @@ namespace WixToolset.Iis.Tuples
48 46
49 public IntermediateField this[IIsWebAddressTupleFields index] => this.Fields[(int)index]; 47 public IntermediateField this[IIsWebAddressTupleFields index] => this.Fields[(int)index];
50 48
51 public string Address 49 public string WebRef
52 { 50 {
53 get => this.Fields[(int)IIsWebAddressTupleFields.Address].AsString(); 51 get => this.Fields[(int)IIsWebAddressTupleFields.WebRef].AsString();
54 set => this.Set((int)IIsWebAddressTupleFields.Address, value); 52 set => this.Set((int)IIsWebAddressTupleFields.WebRef, value);
55 }
56
57 public string Web_
58 {
59 get => this.Fields[(int)IIsWebAddressTupleFields.Web_].AsString();
60 set => this.Set((int)IIsWebAddressTupleFields.Web_, value);
61 } 53 }
62 54
63 public string IP 55 public string IP