Validator Class
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.
Defines a helper class that can be used to validate objects, properties, and methods when it is included in their associated ValidationAttribute attributes.
public ref class Validator abstract sealed
public static class Validator
type Validator = class
Public Class Validator
- Inheritance
-
Validator
Methods
TryValidateObject(Object, ValidationContext, ICollection<ValidationResult>) |
Determines whether the specified object is valid using the validation context and validation results collection. |
TryValidateObject(Object, ValidationContext, ICollection<ValidationResult>, Boolean) |
Determines whether the specified object is valid using the validation context, validation results collection, and a value that specifies whether to validate all properties. |
TryValidateProperty(Object, ValidationContext, ICollection<ValidationResult>) |
Validates the property. |
TryValidateValue(Object, ValidationContext, ICollection<ValidationResult>, IEnumerable<ValidationAttribute>) |
Returns a value that indicates whether the specified value is valid with the specified attributes. |
ValidateObject(Object, ValidationContext) |
Determines whether the specified object is valid using the validation context. |
ValidateObject(Object, ValidationContext, Boolean) |
Determines whether the specified object is valid using the validation context, and a value that specifies whether to validate all properties. |
ValidateProperty(Object, ValidationContext) |
Validates the property. |
ValidateValue(Object, ValidationContext, IEnumerable<ValidationAttribute>) |
Validates the specified attributes. |