aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/Preprocess/ResolvedVariableEventHandler.cs
blob: df3a7e6ab96e852a07572bdb6bf217dbab554635 (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;

    public delegate void ResolvedVariableEventHandler(object sender, ResolvedVariableEventArgs e);

    public 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; }
    }
}