Validator::TryValidateValue Method (Object^, ValidationContext^, ICollection<ValidationResult^>^, IEnumerable<ValidationAttribute^>^)

 

Returns a value that indicates whether the specified value is valid with the specified attributes.

Namespace:   System.ComponentModel.DataAnnotations
Assembly:  System.ComponentModel.DataAnnotations (in System.ComponentModel.DataAnnotations.dll)

public:
static bool TryValidateValue(
	Object^ value,
	ValidationContext^ validationContext,
	ICollection<ValidationResult^>^ validationResults,
	IEnumerable<ValidationAttribute^>^ validationAttributes
)

Parameters

value
Type: System::Object^

The value to validate.

validationContext
Type: System.ComponentModel.DataAnnotations::ValidationContext^

The context that describes the object to validate.

validationResults
Type: System.Collections.Generic::ICollection<ValidationResult^>^

A collection to hold failed validations.

validationAttributes
Type: System.Collections.Generic::IEnumerable<ValidationAttribute^>^

The validation attributes.

Return Value

Type: System::Boolean

true if the object validates; otherwise, false.

This method tests each validation attribute in the validationAttributes parameter against the value parameter. If the validationResults parameter is not null, this method adds a ValidationResult object for each validation failure to the validation results collection. If the validationResults parameter is null, this method does not add a ValidationResult object to the collection. If a RequiredAttribute attribute is included in the validationAttributes parameter, the RequiredAttribute attribute is evaluated first.

Universal Windows Platform
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 3.0
Return to top
Show: