ExpressionParseException Class
Definition
Exception thrown when the provided binding expression string could not be parsed.
public class ExpressionParseException
Constructors
| Name | Description |
|---|---|
| ExpressionParseException | Initializes a new instance of the Avalonia.Data.Core.ExpressionParseException class. |
ExpressionParseException Constructor
Initializes a new instance of the Avalonia.Data.Core.ExpressionParseException class.
public ExpressionParseException(int column, string message, Exception innerException)
Parameters
column int
The column position of the error.
message string
The exception message.
innerException Exception
The exception that caused the parsing failure.
Properties
| Name | Description |
|---|---|
| Column | Gets the column position at which the error occurred. |
Column Property
Gets the column position at which the error occurred.
public int Column { get; set; }