aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/Tuples/IIsWebDirPropertiesTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixext/Tuples/IIsWebDirPropertiesTuple.cs')
-rw-r--r--src/wixext/Tuples/IIsWebDirPropertiesTuple.cs36
1 files changed, 18 insertions, 18 deletions
diff --git a/src/wixext/Tuples/IIsWebDirPropertiesTuple.cs b/src/wixext/Tuples/IIsWebDirPropertiesTuple.cs
index 1c7cd8bf..48e2c932 100644
--- a/src/wixext/Tuples/IIsWebDirPropertiesTuple.cs
+++ b/src/wixext/Tuples/IIsWebDirPropertiesTuple.cs
@@ -64,15 +64,15 @@ namespace WixToolset.Iis.Tuples
64 64
65 public IntermediateField this[IIsWebDirPropertiesTupleFields index] => this.Fields[(int)index]; 65 public IntermediateField this[IIsWebDirPropertiesTupleFields index] => this.Fields[(int)index];
66 66
67 public int Access 67 public int? Access
68 { 68 {
69 get => this.Fields[(int)IIsWebDirPropertiesTupleFields.Access].AsNumber(); 69 get => this.Fields[(int)IIsWebDirPropertiesTupleFields.Access].AsNullableNumber();
70 set => this.Set((int)IIsWebDirPropertiesTupleFields.Access, value); 70 set => this.Set((int)IIsWebDirPropertiesTupleFields.Access, value);
71 } 71 }
72 72
73 public int Authorization 73 public int? Authorization
74 { 74 {
75 get => this.Fields[(int)IIsWebDirPropertiesTupleFields.Authorization].AsNumber(); 75 get => this.Fields[(int)IIsWebDirPropertiesTupleFields.Authorization].AsNullableNumber();
76 set => this.Set((int)IIsWebDirPropertiesTupleFields.Authorization, value); 76 set => this.Set((int)IIsWebDirPropertiesTupleFields.Authorization, value);
77 } 77 }
78 78
@@ -82,21 +82,21 @@ namespace WixToolset.Iis.Tuples
82 set => this.Set((int)IIsWebDirPropertiesTupleFields.AnonymousUserRef, value); 82 set => this.Set((int)IIsWebDirPropertiesTupleFields.AnonymousUserRef, value);
83 } 83 }
84 84
85 public int IIsControlledPassword 85 public int? IIsControlledPassword
86 { 86 {
87 get => this.Fields[(int)IIsWebDirPropertiesTupleFields.IIsControlledPassword].AsNumber(); 87 get => this.Fields[(int)IIsWebDirPropertiesTupleFields.IIsControlledPassword].AsNullableNumber();
88 set => this.Set((int)IIsWebDirPropertiesTupleFields.IIsControlledPassword, value); 88 set => this.Set((int)IIsWebDirPropertiesTupleFields.IIsControlledPassword, value);
89 } 89 }
90 90
91 public int LogVisits 91 public int? LogVisits
92 { 92 {
93 get => this.Fields[(int)IIsWebDirPropertiesTupleFields.LogVisits].AsNumber(); 93 get => this.Fields[(int)IIsWebDirPropertiesTupleFields.LogVisits].AsNullableNumber();
94 set => this.Set((int)IIsWebDirPropertiesTupleFields.LogVisits, value); 94 set => this.Set((int)IIsWebDirPropertiesTupleFields.LogVisits, value);
95 } 95 }
96 96
97 public int Index 97 public int? Index
98 { 98 {
99 get => this.Fields[(int)IIsWebDirPropertiesTupleFields.Index].AsNumber(); 99 get => this.Fields[(int)IIsWebDirPropertiesTupleFields.Index].AsNullableNumber();
100 set => this.Set((int)IIsWebDirPropertiesTupleFields.Index, value); 100 set => this.Set((int)IIsWebDirPropertiesTupleFields.Index, value);
101 } 101 }
102 102
@@ -106,9 +106,9 @@ namespace WixToolset.Iis.Tuples
106 set => this.Set((int)IIsWebDirPropertiesTupleFields.DefaultDoc, value); 106 set => this.Set((int)IIsWebDirPropertiesTupleFields.DefaultDoc, value);
107 } 107 }
108 108
109 public int AspDetailedError 109 public int? AspDetailedError
110 { 110 {
111 get => this.Fields[(int)IIsWebDirPropertiesTupleFields.AspDetailedError].AsNumber(); 111 get => this.Fields[(int)IIsWebDirPropertiesTupleFields.AspDetailedError].AsNullableNumber();
112 set => this.Set((int)IIsWebDirPropertiesTupleFields.AspDetailedError, value); 112 set => this.Set((int)IIsWebDirPropertiesTupleFields.AspDetailedError, value);
113 } 113 }
114 114
@@ -118,9 +118,9 @@ namespace WixToolset.Iis.Tuples
118 set => this.Set((int)IIsWebDirPropertiesTupleFields.HttpExpires, value); 118 set => this.Set((int)IIsWebDirPropertiesTupleFields.HttpExpires, value);
119 } 119 }
120 120
121 public int CacheControlMaxAge 121 public int? CacheControlMaxAge
122 { 122 {
123 get => this.Fields[(int)IIsWebDirPropertiesTupleFields.CacheControlMaxAge].AsNumber(); 123 get => this.Fields[(int)IIsWebDirPropertiesTupleFields.CacheControlMaxAge].AsNullableNumber();
124 set => this.Set((int)IIsWebDirPropertiesTupleFields.CacheControlMaxAge, value); 124 set => this.Set((int)IIsWebDirPropertiesTupleFields.CacheControlMaxAge, value);
125 } 125 }
126 126
@@ -130,15 +130,15 @@ namespace WixToolset.Iis.Tuples
130 set => this.Set((int)IIsWebDirPropertiesTupleFields.CacheControlCustom, value); 130 set => this.Set((int)IIsWebDirPropertiesTupleFields.CacheControlCustom, value);
131 } 131 }
132 132
133 public int NoCustomError 133 public int? NoCustomError
134 { 134 {
135 get => this.Fields[(int)IIsWebDirPropertiesTupleFields.NoCustomError].AsNumber(); 135 get => this.Fields[(int)IIsWebDirPropertiesTupleFields.NoCustomError].AsNullableNumber();
136 set => this.Set((int)IIsWebDirPropertiesTupleFields.NoCustomError, value); 136 set => this.Set((int)IIsWebDirPropertiesTupleFields.NoCustomError, value);
137 } 137 }
138 138
139 public int AccessSSLFlags 139 public int? AccessSSLFlags
140 { 140 {
141 get => this.Fields[(int)IIsWebDirPropertiesTupleFields.AccessSSLFlags].AsNumber(); 141 get => this.Fields[(int)IIsWebDirPropertiesTupleFields.AccessSSLFlags].AsNullableNumber();
142 set => this.Set((int)IIsWebDirPropertiesTupleFields.AccessSSLFlags, value); 142 set => this.Set((int)IIsWebDirPropertiesTupleFields.AccessSSLFlags, value);
143 } 143 }
144 144