Class ExpressionParserError
Represents an error that occurs when an expression is parsed.
Inheritance
Namespace: Telerik.Expressions
Assembly: Telerik.Windows.Data.dll
Syntax
public class ExpressionParserError : Object
Constructors
ExpressionParserError(ExpressionLocation, ExpressionLocation, String)
Initializes a new instance of the ExpressionParserError class.
Declaration
public ExpressionParserError(ExpressionLocation start, ExpressionLocation end, string message)
Parameters
ExpressionLocation
start
The start location of the error. |
ExpressionLocation
end
The end location of the error. |
System.String
message
The error message. |
Properties
End
Gets the end location of the error message.
Declaration
public ExpressionLocation End { get; }
Property Value
ExpressionLocation
|
Message
Gets the error message.
Declaration
public string Message { get; }
Property Value
System.String
|
Start
Gets the start location of the error message.
Declaration
public ExpressionLocation Start { get; }
Property Value
ExpressionLocation
|