Skip to main content
Version: 4.1

BindingCompleteEventArgs

Namespace: Wisej.Web

Assembly: Wisej.Framework (4.1.0.0)

Provides data for the BindingComplete event.

public class BindingCompleteEventArgs : CancelEventArgs

Constructors

Instance member BindingCompleteEventArgs(binding, state, context, errorText, exception, cancel)

Initializes a new instance of the BindingCompleteEventArgs class with the specified binding, error state and text, binding context, exception, and whether the binding should be canceled.

NameTypeDescription
bindingBindingThe binding associated with this occurrence of a BindingComplete event.
stateBindingCompleteStateOne of the BindingCompleteState values.
contextBindingCompleteContextOne of the BindingCompleteContext values.
errorTextStringThe error text or exception message for errors that occurred during the binding.
exceptionExceptionThe Exception that occurred during the binding.
cancelBooleantrue to cancel the binding and keep focus on the current control; false to allow focus to shift to another control.

Instance member BindingCompleteEventArgs(binding, state, context, errorText, exception)

Initializes a new instance of the BindingCompleteEventArgs class with the specified binding, error state and text, binding context, and exception.

NameTypeDescription
bindingBindingThe binding associated with this occurrence of a BindingComplete event.
stateBindingCompleteStateOne of the BindingCompleteState values.
contextBindingCompleteContextOne of the BindingCompleteContext values.
errorTextStringThe error text or exception message for errors that occurred during the binding.
exceptionExceptionThe Exception that occurred during the binding.

Instance member BindingCompleteEventArgs(binding, state, context, errorText)

Initializes a new instance of the BindingCompleteEventArgs class with the specified binding, error state and text, and binding context.

NameTypeDescription
bindingBindingThe binding associated with this occurrence of a BindingComplete event.
stateBindingCompleteStateOne of the BindingCompleteState values.
contextBindingCompleteContextOne of the BindingCompleteContext values.
errorTextStringThe error text or exception message for errors that occurred during the binding.

Instance member BindingCompleteEventArgs(binding, state, context)

Initializes a new instance of the BindingCompleteEventArgs class with the specified binding, error state, and binding context.

NameTypeDescription
bindingBindingThe binding associated with this occurrence of a BindingComplete event.
stateBindingCompleteStateOne of the BindingCompleteState values.
contextBindingCompleteContextOne of the BindingCompleteContext values.

Properties

Instance member Binding

Binding: Returns the binding associated with this occurrence of a BindingComplete event.

Instance member BindingCompleteContext

BindingCompleteContext: Returns the direction of the binding operation.

Instance member BindingCompleteState

BindingCompleteState: Returns the completion state of the binding operation.

Instance member ErrorText

String: Returns the text description of the error that occurred during the binding operation.

Instance member Exception

Exception: Returns the exception that occurred during the binding operation.

Used By

NameDescription
BindingCompleteEventHandlerRepresents the delegate that handles the BindingComplete event.