aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/Tuples/IIsHttpHeaderTuple.cs
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-04-13 19:35:29 +1000
committerSean Hall <r.sean.hall@gmail.com>2020-04-13 19:35:29 +1000
commit9339c0c40679098a63e3e6b47f1f9ab8d3a848fb (patch)
tree2c7fa10ab2ff4e1813028d3b1804875513953cd5 /src/wixext/Tuples/IIsHttpHeaderTuple.cs
parente56f0c4d6ae39bde559d07f6737b7d370859c860 (diff)
downloadwix-9339c0c40679098a63e3e6b47f1f9ab8d3a848fb.tar.gz
wix-9339c0c40679098a63e3e6b47f1f9ab8d3a848fb.tar.bz2
wix-9339c0c40679098a63e3e6b47f1f9ab8d3a848fb.zip
Update dependencies.
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 }