1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
|
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
namespace WixToolset.Iis
{
using WixToolset.Data;
using WixToolset.Iis.Tuples;
public static partial class IisTupleDefinitions
{
public static readonly IntermediateTupleDefinition IIsWebDirProperties = new IntermediateTupleDefinition(
IisTupleDefinitionType.IIsWebDirProperties.ToString(),
new[]
{
new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesTupleFields.Access), IntermediateFieldType.Number),
new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesTupleFields.Authorization), IntermediateFieldType.Number),
new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesTupleFields.AnonymousUserRef), IntermediateFieldType.String),
new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesTupleFields.IIsControlledPassword), IntermediateFieldType.Number),
new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesTupleFields.LogVisits), IntermediateFieldType.Number),
new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesTupleFields.Index), IntermediateFieldType.Number),
new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesTupleFields.DefaultDoc), IntermediateFieldType.String),
new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesTupleFields.AspDetailedError), IntermediateFieldType.Number),
new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesTupleFields.HttpExpires), IntermediateFieldType.String),
new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesTupleFields.CacheControlMaxAge), IntermediateFieldType.Number),
new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesTupleFields.CacheControlCustom), IntermediateFieldType.String),
new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesTupleFields.NoCustomError), IntermediateFieldType.Number),
new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesTupleFields.AccessSSLFlags), IntermediateFieldType.Number),
new IntermediateFieldDefinition(nameof(IIsWebDirPropertiesTupleFields.AuthenticationProviders), IntermediateFieldType.String),
},
typeof(IIsWebDirPropertiesTuple));
}
}
namespace WixToolset.Iis.Tuples
{
using WixToolset.Data;
public enum IIsWebDirPropertiesTupleFields
{
Access,
Authorization,
AnonymousUserRef,
IIsControlledPassword,
LogVisits,
Index,
DefaultDoc,
AspDetailedError,
HttpExpires,
CacheControlMaxAge,
CacheControlCustom,
NoCustomError,
AccessSSLFlags,
AuthenticationProviders,
}
public class IIsWebDirPropertiesTuple : IntermediateTuple
{
public IIsWebDirPropertiesTuple() : base(IisTupleDefinitions.IIsWebDirProperties, null, null)
{
}
public IIsWebDirPropertiesTuple(SourceLineNumber sourceLineNumber, Identifier id = null) : base(IisTupleDefinitions.IIsWebDirProperties, sourceLineNumber, id)
{
}
public IntermediateField this[IIsWebDirPropertiesTupleFields index] => this.Fields[(int)index];
public int Access
{
get => this.Fields[(int)IIsWebDirPropertiesTupleFields.Access].AsNumber();
set => this.Set((int)IIsWebDirPropertiesTupleFields.Access, value);
}
public int Authorization
{
get => this.Fields[(int)IIsWebDirPropertiesTupleFields.Authorization].AsNumber();
set => this.Set((int)IIsWebDirPropertiesTupleFields.Authorization, value);
}
public string AnonymousUserRef
{
get => this.Fields[(int)IIsWebDirPropertiesTupleFields.AnonymousUserRef].AsString();
set => this.Set((int)IIsWebDirPropertiesTupleFields.AnonymousUserRef, value);
}
public int IIsControlledPassword
{
get => this.Fields[(int)IIsWebDirPropertiesTupleFields.IIsControlledPassword].AsNumber();
set => this.Set((int)IIsWebDirPropertiesTupleFields.IIsControlledPassword, value);
}
public int LogVisits
{
get => this.Fields[(int)IIsWebDirPropertiesTupleFields.LogVisits].AsNumber();
set => this.Set((int)IIsWebDirPropertiesTupleFields.LogVisits, value);
}
public int Index
{
get => this.Fields[(int)IIsWebDirPropertiesTupleFields.Index].AsNumber();
set => this.Set((int)IIsWebDirPropertiesTupleFields.Index, value);
}
public string DefaultDoc
{
get => this.Fields[(int)IIsWebDirPropertiesTupleFields.DefaultDoc].AsString();
set => this.Set((int)IIsWebDirPropertiesTupleFields.DefaultDoc, value);
}
public int AspDetailedError
{
get => this.Fields[(int)IIsWebDirPropertiesTupleFields.AspDetailedError].AsNumber();
set => this.Set((int)IIsWebDirPropertiesTupleFields.AspDetailedError, value);
}
public string HttpExpires
{
get => this.Fields[(int)IIsWebDirPropertiesTupleFields.HttpExpires].AsString();
set => this.Set((int)IIsWebDirPropertiesTupleFields.HttpExpires, value);
}
public int CacheControlMaxAge
{
get => this.Fields[(int)IIsWebDirPropertiesTupleFields.CacheControlMaxAge].AsNumber();
set => this.Set((int)IIsWebDirPropertiesTupleFields.CacheControlMaxAge, value);
}
public string CacheControlCustom
{
get => this.Fields[(int)IIsWebDirPropertiesTupleFields.CacheControlCustom].AsString();
set => this.Set((int)IIsWebDirPropertiesTupleFields.CacheControlCustom, value);
}
public int NoCustomError
{
get => this.Fields[(int)IIsWebDirPropertiesTupleFields.NoCustomError].AsNumber();
set => this.Set((int)IIsWebDirPropertiesTupleFields.NoCustomError, value);
}
public int AccessSSLFlags
{
get => this.Fields[(int)IIsWebDirPropertiesTupleFields.AccessSSLFlags].AsNumber();
set => this.Set((int)IIsWebDirPropertiesTupleFields.AccessSSLFlags, value);
}
public string AuthenticationProviders
{
get => this.Fields[(int)IIsWebDirPropertiesTupleFields.AuthenticationProviders].AsString();
set => this.Set((int)IIsWebDirPropertiesTupleFields.AuthenticationProviders, value);
}
}
}
|