aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/Tuples/CertificateHashTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixext/Tuples/CertificateHashTuple.cs')
-rw-r--r--src/wixext/Tuples/CertificateHashTuple.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/wixext/Tuples/CertificateHashTuple.cs b/src/wixext/Tuples/CertificateHashTuple.cs
index 6df4c88c..11f0592f 100644
--- a/src/wixext/Tuples/CertificateHashTuple.cs
+++ b/src/wixext/Tuples/CertificateHashTuple.cs
@@ -11,7 +11,7 @@ namespace WixToolset.Iis
11 IisTupleDefinitionType.CertificateHash.ToString(), 11 IisTupleDefinitionType.CertificateHash.ToString(),
12 new[] 12 new[]
13 { 13 {
14 new IntermediateFieldDefinition(nameof(CertificateHashTupleFields.Certificate_), IntermediateFieldType.String), 14 new IntermediateFieldDefinition(nameof(CertificateHashTupleFields.CertificateRef), IntermediateFieldType.String),
15 new IntermediateFieldDefinition(nameof(CertificateHashTupleFields.Hash), IntermediateFieldType.String), 15 new IntermediateFieldDefinition(nameof(CertificateHashTupleFields.Hash), IntermediateFieldType.String),
16 }, 16 },
17 typeof(CertificateHashTuple)); 17 typeof(CertificateHashTuple));
@@ -24,7 +24,7 @@ namespace WixToolset.Iis.Tuples
24 24
25 public enum CertificateHashTupleFields 25 public enum CertificateHashTupleFields
26 { 26 {
27 Certificate_, 27 CertificateRef,
28 Hash, 28 Hash,
29 } 29 }
30 30
@@ -40,10 +40,10 @@ namespace WixToolset.Iis.Tuples
40 40
41 public IntermediateField this[CertificateHashTupleFields index] => this.Fields[(int)index]; 41 public IntermediateField this[CertificateHashTupleFields index] => this.Fields[(int)index];
42 42
43 public string Certificate_ 43 public string CertificateRef
44 { 44 {
45 get => this.Fields[(int)CertificateHashTupleFields.Certificate_].AsString(); 45 get => this.Fields[(int)CertificateHashTupleFields.CertificateRef].AsString();
46 set => this.Set((int)CertificateHashTupleFields.Certificate_, value); 46 set => this.Set((int)CertificateHashTupleFields.CertificateRef, value);
47 } 47 }
48 48
49 public string Hash 49 public string Hash