aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/Tuples/IIsHttpHeaderTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixext/Tuples/IIsHttpHeaderTuple.cs')
-rw-r--r--src/wixext/Tuples/IIsHttpHeaderTuple.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wixext/Tuples/IIsHttpHeaderTuple.cs b/src/wixext/Tuples/IIsHttpHeaderTuple.cs
index 3d0e029c..43ebbe16 100644
--- a/src/wixext/Tuples/IIsHttpHeaderTuple.cs
+++ b/src/wixext/Tuples/IIsHttpHeaderTuple.cs
@@ -86,9 +86,9 @@ namespace WixToolset.Iis.Tuples
86 set => this.Set((int)IIsHttpHeaderTupleFields.Attributes, value); 86 set => this.Set((int)IIsHttpHeaderTupleFields.Attributes, value);
87 } 87 }
88 88
89 public int Sequence 89 public int? Sequence
90 { 90 {
91 get => this.Fields[(int)IIsHttpHeaderTupleFields.Sequence].AsNumber(); 91 get => this.Fields[(int)IIsHttpHeaderTupleFields.Sequence].AsNullableNumber();
92 set => this.Set((int)IIsHttpHeaderTupleFields.Sequence, value); 92 set => this.Set((int)IIsHttpHeaderTupleFields.Sequence, value);
93 } 93 }
94 } 94 }