Represents an error that occurs when an expression is parsed.
Definition
Namespace:Telerik.Expressions
Assembly:Telerik.Windows.Data.dll
Syntax:
C#
public class ExpressionParserError
Inheritance: objectExpressionParserError
Constructors
Initializes a new instance of the ExpressionParserError class.
C#
public ExpressionParserError(ExpressionLocation start, ExpressionLocation end, string message)
The start location of the error.
endExpressionLocationThe end location of the error.
messagestringThe error message.
Properties
Gets the end location of the error message.
C#
public ExpressionLocation End { get; }
Gets the start location of the error message.
C#
public ExpressionLocation Start { get; }