PositiveTimeSpanValidator.CanValidate(Type) Methode

Definition

Bestimmt, ob der Objekttyp überprüft werden kann.

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

Parameter

type
Type

Der Objekttyp.

Gibt zurück

true wenn der type Parameter mit einem TimeSpan Objekt übereinstimmt; andernfalls false.

Beispiele

Im folgenden Codebeispiel wird die Verwendung der CanValidate Methode veranschaulicht. Dieses Codebeispiel ist Teil eines größeren Beispiels, das für die PositiveTimeSpanValidator Klasse bereitgestellt wird.

// 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

Gilt für: