main
cs 52 lines 1.75 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 AppSearch = new IntermediateSymbolDefinition(
10 SymbolDefinitionType.AppSearch,
11 new[]
12 {
13 new IntermediateFieldDefinition(nameof(AppSearchSymbolFields.PropertyRef), IntermediateFieldType.String),
14 new IntermediateFieldDefinition(nameof(AppSearchSymbolFields.SignatureRef), IntermediateFieldType.String),
15 },
16 typeof(AppSearchSymbol));
17 }
18 }
19
20 namespace WixToolset.Data.Symbols
21 {
22 public enum AppSearchSymbolFields
23 {
24 PropertyRef,
25 SignatureRef,
26 }
27
28 public class AppSearchSymbol : IntermediateSymbol
29 {
30 public AppSearchSymbol() : base(SymbolDefinitions.AppSearch, null, null)
31 {
32 }
33
34 public AppSearchSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(SymbolDefinitions.AppSearch, sourceLineNumber, id)
35 {
36 }
37
38 public IntermediateField this[AppSearchSymbolFields index] => this.Fields[(int)index];
39
40 public string PropertyRef
41 {
42 get => (string)this.Fields[(int)AppSearchSymbolFields.PropertyRef];
43 set => this.Set((int)AppSearchSymbolFields.PropertyRef, value);
44 }
45
46 public string SignatureRef
47 {
48 get => (string)this.Fields[(int)AppSearchSymbolFields.SignatureRef];
49 set => this.Set((int)AppSearchSymbolFields.SignatureRef, value);
50 }
51 }
52 }