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