Bagikan melalui


PositiveTimeSpanValidator.CanValidate(Type) Metode

Definisi

Menentukan apakah tipe objek dapat divalidasi.

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

Jenis objek.

Mengembalikan

truetype jika parameter cocok dengan TimeSpan objek; jika tidak, false.

Contoh

Contoh kode berikut menunjukkan cara menggunakan CanValidate metode . Contoh kode ini adalah bagian dari contoh yang lebih besar yang disediakan untuk PositiveTimeSpanValidator kelas .

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

Berlaku untuk