main
cs 25 lines 892 Bytes
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.Core.Preprocess
4 {
5 using System;
6 using WixToolset.Data;
7
8 internal delegate void ResolvedVariableEventHandler(object sender, ResolvedVariableEventArgs e);
9
10 internal class ResolvedVariableEventArgs : EventArgs
11 {
12 public ResolvedVariableEventArgs(SourceLineNumber sourceLineNumbers, string variableName, string variableValue)
13 {
14 this.SourceLineNumbers = sourceLineNumbers;
15 this.VariableName = variableName;
16 this.VariableValue = variableValue;
17 }
18
19 public SourceLineNumber SourceLineNumbers { get; }
20
21 public string VariableName { get; }
22
23 public string VariableValue { get; }
24 }
25 }