e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
28 lines
730 B
C#
28 lines
730 B
C#
//------------------------------------------------------------
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//------------------------------------------------------------
|
|
|
|
namespace Microsoft.Build.Tasks.Xaml
|
|
{
|
|
using System;
|
|
|
|
internal class ValidationEventArgs : EventArgs
|
|
{
|
|
public ValidationEventArgs(string message, int lineNumber, int linePosition)
|
|
{
|
|
Message = message;
|
|
LineNumber = lineNumber;
|
|
LinePosition = linePosition;
|
|
}
|
|
|
|
public string Message
|
|
{ get; private set; }
|
|
|
|
public int LineNumber
|
|
{ get; private set; }
|
|
|
|
public int LinePosition
|
|
{ get; private set; }
|
|
}
|
|
}
|