Table of Contents

Class BindingChainException

Namespace
Avalonia.Data
Assembly
Avalonia.Base.dll

An exception returned through BindingNotification signaling that a requested binding expression could not be evaluated because of an error in one of the links of the binding chain.

public class BindingChainException : Exception, ISerializable
Inheritance
BindingChainException
Implements
Inherited Members

Constructors

BindingChainException()

Initializes a new instance of the BindingChainException class.

public BindingChainException()

BindingChainException(string)

Initializes a new instance of the BindingChainException class.

public BindingChainException(string message)

Parameters

message string

The error message.

BindingChainException(string, string, string)

Initializes a new instance of the BindingChainException class.

public BindingChainException(string message, string expression, string errorPoint)

Parameters

message string

The error message.

expression string

The expression.

errorPoint string

The point in the expression at which the error was encountered.

Properties

Expression

Gets the expression that could not be evaluated.

public string? Expression { get; protected set; }

Property Value

string

ExpressionErrorPoint

Gets the point in the expression at which the error occurred.

public string? ExpressionErrorPoint { get; protected set; }

Property Value

string

Message

public override string Message { get; }

Property Value

string