This topic has not yet been rated - Rate this topic

NotifyDataErrorValidationRule Class

.NET Framework 4.5

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Represents a rule that checks for errors that are raised by a data source that implements INotifyDataErrorInfo.

System.Object
  System.Windows.Controls.ValidationRule
    System.Windows.Controls.NotifyDataErrorValidationRule

Namespace:  System.Windows.Controls
Assembly:  PresentationFramework (in PresentationFramework.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
public sealed class NotifyDataErrorValidationRule : ValidationRule
<NotifyDataErrorValidationRule .../>

The NotifyDataErrorValidationRule type exposes the following members.

  NameDescription
Public methodNotifyDataErrorValidationRuleCreates a new instance of the NotifyDataErrorValidationRule class.
Top
  NameDescription
Public propertyValidatesOnTargetUpdatedGets or sets a value that indicates whether the validation rule runs when the target of the Binding is updated. (Inherited from ValidationRule.)
Public propertyValidationStepGets or sets when the validation rule runs. (Inherited from ValidationRule.)
Top
  NameDescription
Public methodEquals(Object)Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public methodGetHashCodeServes as a hash function for a particular type. (Inherited from Object.)
Public methodGetTypeGets the Type of the current instance. (Inherited from Object.)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object. (Inherited from Object.)
Public methodToStringReturns a string that represents the current object. (Inherited from Object.)
Public methodValidate(Object, CultureInfo)Performs validation checks on a value. (Overrides ValidationRule.Validate(Object, CultureInfo).)
Public methodValidate(Object, CultureInfo, BindingExpressionBase)Performs validation checks on a value. (Inherited from ValidationRule.)
Public methodValidate(Object, CultureInfo, BindingGroup)Performs validation checks on a value. (Inherited from ValidationRule.)
Top

The WPF data binding model enables you to associate ValidationRules with a Binding or BindingGroup object. The NotifyDataErrorValidationRule class is a built-in rule that checks for exceptions that are thrown during the updates of the binding source property. You can provide custom logic to specify how the binding engine handles these exceptions by using a UpdateSourceExceptionFilterCallback. For more information, see UpdateSourceExceptionFilter.

An alternative syntax to setting the NotifyDataErrorValidationRule explicitly is to set the ValidatesOnExceptions property to true on your Binding, MultiBinding, or BindingGroup object. By default, the value of ValidatesOnExceptions is true, so you do not need to explicitly use a NotifyDataErrorValidationRule.

You can create a custom rule by creating a class that derives from ValidationRule. For more information and a detailed discussion of data validation, see Data Binding Overview.

.NET Framework

Supported in: 4.5

Windows 8 Consumer Preview, Windows Server 8 Beta, Windows 7, Windows Server 2008 SP2, Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.