-
Notifications
You must be signed in to change notification settings - Fork 23
/
ValEventArgs.cs
33 lines (28 loc) · 1.11 KB
/
ValEventArgs.cs
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
26
27
28
29
30
31
32
33
//---------------------------------------------------------------------------------------------------------------------------
// <copyright file="ValEventArgs.cs">(c) Mike Fourie. All other rights reserved.</copyright>
//---------------------------------------------------------------------------------------------------------------------------
namespace MSBuildExplorer
{
using System;
/// <summary>
/// ValEventArgs
/// </summary>
public class ValEventArgs : EventArgs
{
public ValEventArgs(string validationmessage, int indentation)
{
this.Message = validationmessage;
this.Indentation = indentation;
this.Type = Helper.MessageType.Info;
}
internal ValEventArgs(string validationmessage, int indentation, Helper.MessageType messType)
{
this.Message = validationmessage;
this.Indentation = indentation;
this.Type = messType;
}
public string Message { get; set; }
public int Indentation { get; set; }
internal Helper.MessageType Type { get; set; }
}
}