New to Telerik UI for WPFStart a free 30-day trial

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)
Parameters:startExpressionLocation

The start location of the error.

endExpressionLocation

The end location of the error.

messagestring

The error message.

Properties

Gets the end location of the error message.

C#
public ExpressionLocation End { get; }

Gets the error message.

C#
public string Message { get; }

Gets the start location of the error message.

C#
public ExpressionLocation Start { get; }