diff options
Diffstat (limited to 'src/wixext/Tuples/IIsAppPoolTuple.cs')
-rw-r--r-- | src/wixext/Tuples/IIsAppPoolTuple.cs | 28 |
1 files changed, 14 insertions, 14 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 | ||