aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/Tuples
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixext/Tuples')
-rw-r--r--src/wixext/Tuples/IIsAppPoolTuple.cs28
-rw-r--r--src/wixext/Tuples/IIsFilterTuple.cs4
-rw-r--r--src/wixext/Tuples/IIsHttpHeaderTuple.cs4
-rw-r--r--src/wixext/Tuples/IIsWebAddressTuple.cs4
-rw-r--r--src/wixext/Tuples/IIsWebApplicationTuple.cs28
-rw-r--r--src/wixext/Tuples/IIsWebDirPropertiesTuple.cs36
-rw-r--r--src/wixext/Tuples/IIsWebSiteTuple.cs12
7 files changed, 58 insertions, 58 deletions
diff --git a/src/wixext/Tuples/IIsAppPoolTuple.cs b/src/wixext/Tuples/IIsAppPoolTuple.cs
index d14ec7ad..ee8dca51 100644
--- a/src/wixext/Tuples/IIsAppPoolTuple.cs
+++ b/src/wixext/Tuples/IIsAppPoolTuple.cs
@@ -90,15 +90,15 @@ namespace WixToolset.Iis.Tuples
90 set => this.Set((int)IIsAppPoolTupleFields.UserRef, value); 90 set => this.Set((int)IIsAppPoolTupleFields.UserRef, value);
91 } 91 }
92 92
93 public int RecycleMinutes 93 public int? RecycleMinutes
94 { 94 {
95 get => this.Fields[(int)IIsAppPoolTupleFields.RecycleMinutes].AsNumber(); 95 get => this.Fields[(int)IIsAppPoolTupleFields.RecycleMinutes].AsNullableNumber();
96 set => this.Set((int)IIsAppPoolTupleFields.RecycleMinutes, value); 96 set => this.Set((int)IIsAppPoolTupleFields.RecycleMinutes, value);
97 } 97 }
98 98
99 public int RecycleRequests 99 public int? RecycleRequests
100 { 100 {
101 get => this.Fields[(int)IIsAppPoolTupleFields.RecycleRequests].AsNumber(); 101 get => this.Fields[(int)IIsAppPoolTupleFields.RecycleRequests].AsNullableNumber();
102 set => this.Set((int)IIsAppPoolTupleFields.RecycleRequests, value); 102 set => this.Set((int)IIsAppPoolTupleFields.RecycleRequests, value);
103 } 103 }
104 104
@@ -108,15 +108,15 @@ namespace WixToolset.Iis.Tuples
108 set => this.Set((int)IIsAppPoolTupleFields.RecycleTimes, value); 108 set => this.Set((int)IIsAppPoolTupleFields.RecycleTimes, value);
109 } 109 }
110 110
111 public int IdleTimeout 111 public int? IdleTimeout
112 { 112 {
113 get => this.Fields[(int)IIsAppPoolTupleFields.IdleTimeout].AsNumber(); 113 get => this.Fields[(int)IIsAppPoolTupleFields.IdleTimeout].AsNullableNumber();
114 set => this.Set((int)IIsAppPoolTupleFields.IdleTimeout, value); 114 set => this.Set((int)IIsAppPoolTupleFields.IdleTimeout, value);
115 } 115 }
116 116
117 public int QueueLimit 117 public int? QueueLimit
118 { 118 {
119 get => this.Fields[(int)IIsAppPoolTupleFields.QueueLimit].AsNumber(); 119 get => this.Fields[(int)IIsAppPoolTupleFields.QueueLimit].AsNullableNumber();
120 set => this.Set((int)IIsAppPoolTupleFields.QueueLimit, value); 120 set => this.Set((int)IIsAppPoolTupleFields.QueueLimit, value);
121 } 121 }
122 122
@@ -126,21 +126,21 @@ namespace WixToolset.Iis.Tuples
126 set => this.Set((int)IIsAppPoolTupleFields.CPUMon, value); 126 set => this.Set((int)IIsAppPoolTupleFields.CPUMon, value);
127 } 127 }
128 128
129 public int MaxProc 129 public int? MaxProc
130 { 130 {
131 get => this.Fields[(int)IIsAppPoolTupleFields.MaxProc].AsNumber(); 131 get => this.Fields[(int)IIsAppPoolTupleFields.MaxProc].AsNullableNumber();
132 set => this.Set((int)IIsAppPoolTupleFields.MaxProc, value); 132 set => this.Set((int)IIsAppPoolTupleFields.MaxProc, value);
133 } 133 }
134 134
135 public int VirtualMemory 135 public int? VirtualMemory
136 { 136 {
137 get => this.Fields[(int)IIsAppPoolTupleFields.VirtualMemory].AsNumber(); 137 get => this.Fields[(int)IIsAppPoolTupleFields.VirtualMemory].AsNullableNumber();
138 set => this.Set((int)IIsAppPoolTupleFields.VirtualMemory, value); 138 set => this.Set((int)IIsAppPoolTupleFields.VirtualMemory, value);
139 } 139 }
140 140
141 public int PrivateMemory 141 public int? PrivateMemory
142 { 142 {
143 get => this.Fields[(int)IIsAppPoolTupleFields.PrivateMemory].AsNumber(); 143 get => this.Fields[(int)IIsAppPoolTupleFields.PrivateMemory].AsNullableNumber();
144 set => this.Set((int)IIsAppPoolTupleFields.PrivateMemory, value); 144 set => this.Set((int)IIsAppPoolTupleFields.PrivateMemory, value);
145 } 145 }
146 146
diff --git a/src/wixext/Tuples/IIsFilterTuple.cs b/src/wixext/Tuples/IIsFilterTuple.cs
index 5dda8878..e681a235 100644
--- a/src/wixext/Tuples/IIsFilterTuple.cs
+++ b/src/wixext/Tuples/IIsFilterTuple.cs
@@ -86,9 +86,9 @@ namespace WixToolset.Iis.Tuples
86 set => this.Set((int)IIsFilterTupleFields.Flags, value); 86 set => this.Set((int)IIsFilterTupleFields.Flags, value);
87 } 87 }
88 88
89 public int LoadOrder 89 public int? LoadOrder
90 { 90 {
91 get => this.Fields[(int)IIsFilterTupleFields.LoadOrder].AsNumber(); 91 get => this.Fields[(int)IIsFilterTupleFields.LoadOrder].AsNullableNumber();
92 set => this.Set((int)IIsFilterTupleFields.LoadOrder, value); 92 set => this.Set((int)IIsFilterTupleFields.LoadOrder, value);
93 } 93 }
94 } 94 }
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 }
diff --git a/src/wixext/Tuples/IIsWebAddressTuple.cs b/src/wixext/Tuples/IIsWebAddressTuple.cs
index 603f62cb..b6e61ccc 100644
--- a/src/wixext/Tuples/IIsWebAddressTuple.cs
+++ b/src/wixext/Tuples/IIsWebAddressTuple.cs
@@ -70,9 +70,9 @@ namespace WixToolset.Iis.Tuples
70 set => this.Set((int)IIsWebAddressTupleFields.Header, value); 70 set => this.Set((int)IIsWebAddressTupleFields.Header, value);
71 } 71 }
72 72
73 public int Secure 73 public int? Secure
74 { 74 {
75 get => this.Fields[(int)IIsWebAddressTupleFields.Secure].AsNumber(); 75 get => this.Fields[(int)IIsWebAddressTupleFields.Secure].AsNullableNumber();
76 set => this.Set((int)IIsWebAddressTupleFields.Secure, value); 76 set => this.Set((int)IIsWebAddressTupleFields.Secure, value);
77 } 77 }
78 } 78 }
diff --git a/src/wixext/Tuples/IIsWebApplicationTuple.cs b/src/wixext/Tuples/IIsWebApplicationTuple.cs
index 6af3a2f7..31ea955e 100644
--- a/src/wixext/Tuples/IIsWebApplicationTuple.cs
+++ b/src/wixext/Tuples/IIsWebApplicationTuple.cs
@@ -70,27 +70,27 @@ namespace WixToolset.Iis.Tuples
70 set => this.Set((int)IIsWebApplicationTupleFields.Isolation, value); 70 set => this.Set((int)IIsWebApplicationTupleFields.Isolation, value);
71 } 71 }
72 72
73 public int AllowSessions 73 public int? AllowSessions
74 { 74 {
75 get => this.Fields[(int)IIsWebApplicationTupleFields.AllowSessions].AsNumber(); 75 get => this.Fields[(int)IIsWebApplicationTupleFields.AllowSessions].AsNullableNumber();
76 set => this.Set((int)IIsWebApplicationTupleFields.AllowSessions, value); 76 set => this.Set((int)IIsWebApplicationTupleFields.AllowSessions, value);
77 } 77 }
78 78
79 public int SessionTimeout 79 public int? SessionTimeout
80 { 80 {
81 get => this.Fields[(int)IIsWebApplicationTupleFields.SessionTimeout].AsNumber(); 81 get => this.Fields[(int)IIsWebApplicationTupleFields.SessionTimeout].AsNullableNumber();
82 set => this.Set((int)IIsWebApplicationTupleFields.SessionTimeout, value); 82 set => this.Set((int)IIsWebApplicationTupleFields.SessionTimeout, value);
83 } 83 }
84 84
85 public int Buffer 85 public int? Buffer
86 { 86 {
87 get => this.Fields[(int)IIsWebApplicationTupleFields.Buffer].AsNumber(); 87 get => this.Fields[(int)IIsWebApplicationTupleFields.Buffer].AsNullableNumber();
88 set => this.Set((int)IIsWebApplicationTupleFields.Buffer, value); 88 set => this.Set((int)IIsWebApplicationTupleFields.Buffer, value);
89 } 89 }
90 90
91 public int ParentPaths 91 public int? ParentPaths
92 { 92 {
93 get => this.Fields[(int)IIsWebApplicationTupleFields.ParentPaths].AsNumber(); 93 get => this.Fields[(int)IIsWebApplicationTupleFields.ParentPaths].AsNullableNumber();
94 set => this.Set((int)IIsWebApplicationTupleFields.ParentPaths, value); 94 set => this.Set((int)IIsWebApplicationTupleFields.ParentPaths, value);
95 } 95 }
96 96
@@ -100,21 +100,21 @@ namespace WixToolset.Iis.Tuples
100 set => this.Set((int)IIsWebApplicationTupleFields.DefaultScript, value); 100 set => this.Set((int)IIsWebApplicationTupleFields.DefaultScript, value);
101 } 101 }
102 102
103 public int ScriptTimeout 103 public int? ScriptTimeout
104 { 104 {
105 get => this.Fields[(int)IIsWebApplicationTupleFields.ScriptTimeout].AsNumber(); 105 get => this.Fields[(int)IIsWebApplicationTupleFields.ScriptTimeout].AsNullableNumber();
106 set => this.Set((int)IIsWebApplicationTupleFields.ScriptTimeout, value); 106 set => this.Set((int)IIsWebApplicationTupleFields.ScriptTimeout, value);
107 } 107 }
108 108
109 public int ServerDebugging 109 public int? ServerDebugging
110 { 110 {
111 get => this.Fields[(int)IIsWebApplicationTupleFields.ServerDebugging].AsNumber(); 111 get => this.Fields[(int)IIsWebApplicationTupleFields.ServerDebugging].AsNullableNumber();
112 set => this.Set((int)IIsWebApplicationTupleFields.ServerDebugging, value); 112 set => this.Set((int)IIsWebApplicationTupleFields.ServerDebugging, value);
113 } 113 }
114 114
115 public int ClientDebugging 115 public int? ClientDebugging
116 { 116 {
117 get => this.Fields[(int)IIsWebApplicationTupleFields.ClientDebugging].AsNumber(); 117 get => this.Fields[(int)IIsWebApplicationTupleFields.ClientDebugging].AsNullableNumber();
118 set => this.Set((int)IIsWebApplicationTupleFields.ClientDebugging, value); 118 set => this.Set((int)IIsWebApplicationTupleFields.ClientDebugging, value);
119 } 119 }
120 120
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
diff --git a/src/wixext/Tuples/IIsWebSiteTuple.cs b/src/wixext/Tuples/IIsWebSiteTuple.cs
index 610f1c59..1cce69fb 100644
--- a/src/wixext/Tuples/IIsWebSiteTuple.cs
+++ b/src/wixext/Tuples/IIsWebSiteTuple.cs
@@ -72,9 +72,9 @@ namespace WixToolset.Iis.Tuples
72 set => this.Set((int)IIsWebSiteTupleFields.Description, value); 72 set => this.Set((int)IIsWebSiteTupleFields.Description, value);
73 } 73 }
74 74
75 public int ConnectionTimeout 75 public int? ConnectionTimeout
76 { 76 {
77 get => this.Fields[(int)IIsWebSiteTupleFields.ConnectionTimeout].AsNumber(); 77 get => this.Fields[(int)IIsWebSiteTupleFields.ConnectionTimeout].AsNullableNumber();
78 set => this.Set((int)IIsWebSiteTupleFields.ConnectionTimeout, value); 78 set => this.Set((int)IIsWebSiteTupleFields.ConnectionTimeout, value);
79 } 79 }
80 80
@@ -84,9 +84,9 @@ namespace WixToolset.Iis.Tuples
84 set => this.Set((int)IIsWebSiteTupleFields.DirectoryRef, value); 84 set => this.Set((int)IIsWebSiteTupleFields.DirectoryRef, value);
85 } 85 }
86 86
87 public int State 87 public int? State
88 { 88 {
89 get => this.Fields[(int)IIsWebSiteTupleFields.State].AsNumber(); 89 get => this.Fields[(int)IIsWebSiteTupleFields.State].AsNullableNumber();
90 set => this.Set((int)IIsWebSiteTupleFields.State, value); 90 set => this.Set((int)IIsWebSiteTupleFields.State, value);
91 } 91 }
92 92
@@ -114,9 +114,9 @@ namespace WixToolset.Iis.Tuples
114 set => this.Set((int)IIsWebSiteTupleFields.ApplicationRef, value); 114 set => this.Set((int)IIsWebSiteTupleFields.ApplicationRef, value);
115 } 115 }
116 116
117 public int Sequence 117 public int? Sequence
118 { 118 {
119 get => this.Fields[(int)IIsWebSiteTupleFields.Sequence].AsNumber(); 119 get => this.Fields[(int)IIsWebSiteTupleFields.Sequence].AsNullableNumber();
120 set => this.Set((int)IIsWebSiteTupleFields.Sequence, value); 120 set => this.Set((int)IIsWebSiteTupleFields.Sequence, value);
121 } 121 }
122 122