main
cs 68 lines 2.38 KB
Raw
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.Data
4 {
5 using WixToolset.Data.Symbols;
6
7 public static partial class SymbolDefinitions
8 {
9 public static readonly IntermediateSymbolDefinition WixProperty = new IntermediateSymbolDefinition(
10 SymbolDefinitionType.WixProperty,
11 new[]
12 {
13 new IntermediateFieldDefinition(nameof(WixPropertySymbolFields.PropertyRef), IntermediateFieldType.String),
14 new IntermediateFieldDefinition(nameof(WixPropertySymbolFields.Admin), IntermediateFieldType.Bool),
15 new IntermediateFieldDefinition(nameof(WixPropertySymbolFields.Hidden), IntermediateFieldType.Bool),
16 new IntermediateFieldDefinition(nameof(WixPropertySymbolFields.Secure), IntermediateFieldType.Bool),
17 },
18 typeof(WixPropertySymbol));
19 }
20 }
21
22 namespace WixToolset.Data.Symbols
23 {
24 public enum WixPropertySymbolFields
25 {
26 PropertyRef,
27 Admin,
28 Hidden,
29 Secure,
30 }
31
32 public class WixPropertySymbol : IntermediateSymbol
33 {
34 public WixPropertySymbol() : base(SymbolDefinitions.WixProperty, null, null)
35 {
36 }
37
38 public WixPropertySymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(SymbolDefinitions.WixProperty, sourceLineNumber, id)
39 {
40 }
41
42 public IntermediateField this[WixPropertySymbolFields index] => this.Fields[(int)index];
43
44 public string PropertyRef
45 {
46 get => (string)this.Fields[(int)WixPropertySymbolFields.PropertyRef];
47 set => this.Set((int)WixPropertySymbolFields.PropertyRef, value);
48 }
49
50 public bool Admin
51 {
52 get => (bool)this.Fields[(int)WixPropertySymbolFields.Admin];
53 set => this.Set((int)WixPropertySymbolFields.Admin, value);
54 }
55
56 public bool Hidden
57 {
58 get => (bool)this.Fields[(int)WixPropertySymbolFields.Hidden];
59 set => this.Set((int)WixPropertySymbolFields.Hidden, value);
60 }
61
62 public bool Secure
63 {
64 get => (bool)this.Fields[(int)WixPropertySymbolFields.Secure];
65 set => this.Set((int)WixPropertySymbolFields.Secure, value);
66 }
67 }
68 }