diff options
Diffstat (limited to 'src/ext/Iis/wixext/Symbols/IIsWebDirSymbol.cs')
-rw-r--r-- | src/ext/Iis/wixext/Symbols/IIsWebDirSymbol.cs | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/src/ext/Iis/wixext/Symbols/IIsWebDirSymbol.cs b/src/ext/Iis/wixext/Symbols/IIsWebDirSymbol.cs new file mode 100644 index 00000000..7f257f14 --- /dev/null +++ b/src/ext/Iis/wixext/Symbols/IIsWebDirSymbol.cs | |||
@@ -0,0 +1,79 @@ | |||
1 | // 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. | ||
2 | |||
3 | namespace WixToolset.Iis | ||
4 | { | ||
5 | using WixToolset.Data; | ||
6 | using WixToolset.Iis.Symbols; | ||
7 | |||
8 | public static partial class IisSymbolDefinitions | ||
9 | { | ||
10 | public static readonly IntermediateSymbolDefinition IIsWebDir = new IntermediateSymbolDefinition( | ||
11 | IisSymbolDefinitionType.IIsWebDir.ToString(), | ||
12 | new[] | ||
13 | { | ||
14 | new IntermediateFieldDefinition(nameof(IIsWebDirSymbolFields.ComponentRef), IntermediateFieldType.String), | ||
15 | new IntermediateFieldDefinition(nameof(IIsWebDirSymbolFields.WebRef), IntermediateFieldType.String), | ||
16 | new IntermediateFieldDefinition(nameof(IIsWebDirSymbolFields.Path), IntermediateFieldType.String), | ||
17 | new IntermediateFieldDefinition(nameof(IIsWebDirSymbolFields.DirPropertiesRef), IntermediateFieldType.String), | ||
18 | new IntermediateFieldDefinition(nameof(IIsWebDirSymbolFields.ApplicationRef), IntermediateFieldType.String), | ||
19 | }, | ||
20 | typeof(IIsWebDirSymbol)); | ||
21 | } | ||
22 | } | ||
23 | |||
24 | namespace WixToolset.Iis.Symbols | ||
25 | { | ||
26 | using WixToolset.Data; | ||
27 | |||
28 | public enum IIsWebDirSymbolFields | ||
29 | { | ||
30 | ComponentRef, | ||
31 | WebRef, | ||
32 | Path, | ||
33 | DirPropertiesRef, | ||
34 | ApplicationRef, | ||
35 | } | ||
36 | |||
37 | public class IIsWebDirSymbol : IntermediateSymbol | ||
38 | { | ||
39 | public IIsWebDirSymbol() : base(IisSymbolDefinitions.IIsWebDir, null, null) | ||
40 | { | ||
41 | } | ||
42 | |||
43 | public IIsWebDirSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(IisSymbolDefinitions.IIsWebDir, sourceLineNumber, id) | ||
44 | { | ||
45 | } | ||
46 | |||
47 | public IntermediateField this[IIsWebDirSymbolFields index] => this.Fields[(int)index]; | ||
48 | |||
49 | public string ComponentRef | ||
50 | { | ||
51 | get => this.Fields[(int)IIsWebDirSymbolFields.ComponentRef].AsString(); | ||
52 | set => this.Set((int)IIsWebDirSymbolFields.ComponentRef, value); | ||
53 | } | ||
54 | |||
55 | public string WebRef | ||
56 | { | ||
57 | get => this.Fields[(int)IIsWebDirSymbolFields.WebRef].AsString(); | ||
58 | set => this.Set((int)IIsWebDirSymbolFields.WebRef, value); | ||
59 | } | ||
60 | |||
61 | public string Path | ||
62 | { | ||
63 | get => this.Fields[(int)IIsWebDirSymbolFields.Path].AsString(); | ||
64 | set => this.Set((int)IIsWebDirSymbolFields.Path, value); | ||
65 | } | ||
66 | |||
67 | public string DirPropertiesRef | ||
68 | { | ||
69 | get => this.Fields[(int)IIsWebDirSymbolFields.DirPropertiesRef].AsString(); | ||
70 | set => this.Set((int)IIsWebDirSymbolFields.DirPropertiesRef, value); | ||
71 | } | ||
72 | |||
73 | public string ApplicationRef | ||
74 | { | ||
75 | get => this.Fields[(int)IIsWebDirSymbolFields.ApplicationRef].AsString(); | ||
76 | set => this.Set((int)IIsWebDirSymbolFields.ApplicationRef, value); | ||
77 | } | ||
78 | } | ||
79 | } \ No newline at end of file | ||