Class BindingChainException
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
stringThe error message.
BindingChainException(string, string, string)
Initializes a new instance of the BindingChainException class.
public BindingChainException(string message, string expression, string errorPoint)
Parameters
message
stringThe error message.
expression
stringThe expression.
errorPoint
stringThe 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
ExpressionErrorPoint
Gets the point in the expression at which the error occurred.
public string? ExpressionErrorPoint { get; protected set; }
Property Value
Message
public override string Message { get; }