Class
ExpressionParserError

Represents an error that occurs when an expression is parsed.

Definition

Namespace:Telerik.Expressions

Assembly:Telerik.Windows.Data.dll

Syntax:

cs-api-definition
public class ExpressionParserError

Inheritance: objectExpressionParserError

Constructors

ExpressionParserError(ExpressionLocation, ExpressionLocation, string)

Initializes a new instance of the ExpressionParserError class.

Declaration

cs-api-definition
public ExpressionParserError(ExpressionLocation start, ExpressionLocation end, string message)

Parameters

start

ExpressionLocation

The start location of the error.

end

ExpressionLocation

The end location of the error.

message

string

The error message.

Properties

End

Gets the end location of the error message.

Declaration

cs-api-definition
public ExpressionLocation End { get; }

Property Value

ExpressionLocation

Message

Gets the error message.

Declaration

cs-api-definition
public string Message { get; }

Property Value

string

Start

Gets the start location of the error message.

Declaration

cs-api-definition
public ExpressionLocation Start { get; }

Property Value

ExpressionLocation