PositiveTimeSpanValidator.CanValidate(Type) Methode

Definitie

Bepaalt of het objecttype kan worden gevalideerd.

public:
 override bool CanValidate(Type ^ type);
public override bool CanValidate(Type type);
override this.CanValidate : Type -> bool
Public Overrides Function CanValidate (type As Type) As Boolean

Parameters

type
Type

Het objecttype.

Retouren

true als de type parameter overeenkomt met een TimeSpan object; falseanders.

Voorbeelden

In het volgende codevoorbeeld ziet u hoe u de CanValidate methode gebruikt. Dit codevoorbeeld maakt deel uit van een groter voorbeeld voor de PositiveTimeSpanValidator klasse.

// Determine if the Validator can validate
// the type it contains.
valBase = customValAttr.ValidatorInstance;
if (valBase.CanValidate(resultTimeSpan.GetType()))
{
    // Validate the TimeSpan using a
    // custom PositiveTimeSpanValidator.
    valBase.Validate(resultTimeSpan);
}
' Determine if the Validator can validate
' the type it contains.
valBase = customValAttr.ValidatorInstance
If valBase.CanValidate(resultTimeSpan.GetType()) Then
    ' Validate the TimeSpan using a
    ' custom PositiveTimeSpanValidator.
    valBase.Validate(resultTimeSpan)
End If

Van toepassing op