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