diff options
Diffstat (limited to 'src/wixext/Tuples/IIsWebSiteCertificatesTuple.cs')
-rw-r--r-- | src/wixext/Tuples/IIsWebSiteCertificatesTuple.cs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/wixext/Tuples/IIsWebSiteCertificatesTuple.cs b/src/wixext/Tuples/IIsWebSiteCertificatesTuple.cs index 711f745f..7e4879d7 100644 --- a/src/wixext/Tuples/IIsWebSiteCertificatesTuple.cs +++ b/src/wixext/Tuples/IIsWebSiteCertificatesTuple.cs | |||
@@ -11,8 +11,8 @@ namespace WixToolset.Iis | |||
11 | IisTupleDefinitionType.IIsWebSiteCertificates.ToString(), | 11 | IisTupleDefinitionType.IIsWebSiteCertificates.ToString(), |
12 | new[] | 12 | new[] |
13 | { | 13 | { |
14 | new IntermediateFieldDefinition(nameof(IIsWebSiteCertificatesTupleFields.Web_), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(IIsWebSiteCertificatesTupleFields.WebRef), IntermediateFieldType.String), |
15 | new IntermediateFieldDefinition(nameof(IIsWebSiteCertificatesTupleFields.Certificate_), IntermediateFieldType.String), | 15 | new IntermediateFieldDefinition(nameof(IIsWebSiteCertificatesTupleFields.CertificateRef), IntermediateFieldType.String), |
16 | }, | 16 | }, |
17 | typeof(IIsWebSiteCertificatesTuple)); | 17 | typeof(IIsWebSiteCertificatesTuple)); |
18 | } | 18 | } |
@@ -24,8 +24,8 @@ namespace WixToolset.Iis.Tuples | |||
24 | 24 | ||
25 | public enum IIsWebSiteCertificatesTupleFields | 25 | public enum IIsWebSiteCertificatesTupleFields |
26 | { | 26 | { |
27 | Web_, | 27 | WebRef, |
28 | Certificate_, | 28 | CertificateRef, |
29 | } | 29 | } |
30 | 30 | ||
31 | public class IIsWebSiteCertificatesTuple : IntermediateTuple | 31 | public class IIsWebSiteCertificatesTuple : IntermediateTuple |
@@ -40,16 +40,16 @@ namespace WixToolset.Iis.Tuples | |||
40 | 40 | ||
41 | public IntermediateField this[IIsWebSiteCertificatesTupleFields index] => this.Fields[(int)index]; | 41 | public IntermediateField this[IIsWebSiteCertificatesTupleFields index] => this.Fields[(int)index]; |
42 | 42 | ||
43 | public string Web_ | 43 | public string WebRef |
44 | { | 44 | { |
45 | get => this.Fields[(int)IIsWebSiteCertificatesTupleFields.Web_].AsString(); | 45 | get => this.Fields[(int)IIsWebSiteCertificatesTupleFields.WebRef].AsString(); |
46 | set => this.Set((int)IIsWebSiteCertificatesTupleFields.Web_, value); | 46 | set => this.Set((int)IIsWebSiteCertificatesTupleFields.WebRef, value); |
47 | } | 47 | } |
48 | 48 | ||
49 | public string Certificate_ | 49 | public string CertificateRef |
50 | { | 50 | { |
51 | get => this.Fields[(int)IIsWebSiteCertificatesTupleFields.Certificate_].AsString(); | 51 | get => this.Fields[(int)IIsWebSiteCertificatesTupleFields.CertificateRef].AsString(); |
52 | set => this.Set((int)IIsWebSiteCertificatesTupleFields.Certificate_, value); | 52 | set => this.Set((int)IIsWebSiteCertificatesTupleFields.CertificateRef, value); |
53 | } | 53 | } |
54 | } | 54 | } |
55 | } \ No newline at end of file | 55 | } \ No newline at end of file |