MultiBinding.UpdateSourceExceptionFilter Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a handler you can use to provide custom logic for handling exceptions that the binding engine encounters during the update of the binding source value. This is only applicable if you have associated the ExceptionValidationRule with your MultiBinding object.
public:
property System::Windows::Data::UpdateSourceExceptionFilterCallback ^ UpdateSourceExceptionFilter { System::Windows::Data::UpdateSourceExceptionFilterCallback ^ get(); void set(System::Windows::Data::UpdateSourceExceptionFilterCallback ^ value); };
public System.Windows.Data.UpdateSourceExceptionFilterCallback UpdateSourceExceptionFilter { get; set; }
member this.UpdateSourceExceptionFilter : System.Windows.Data.UpdateSourceExceptionFilterCallback with get, set
Public Property UpdateSourceExceptionFilter As UpdateSourceExceptionFilterCallback
Property Value
A method that provides custom logic for handling exceptions that the binding engine encounters during the update of the binding source value.
Remarks
The ExceptionValidationRule class represents a built-in validation rule that checks for exceptions that are thrown during the update of the binding source properties. If you have associated the ExceptionValidationRule object with your MultiBinding object, you can use this property to set a handler to provide custom logic for handling these exceptions.
For an example, see Binding.UpdateSourceExceptionFilter.
For more information about the validation process for MultiBinding objects, see the ValidationRules property.