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