共用方式為


PositiveTimeSpanValidator.CanValidate(Type) 方法

定義

判斷是否可以驗證物件型別。

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

參數

type
Type

物件類型。

傳回

如果 type 參數符合 TimeSpan 物件,則為 true,否則為 false

範例

下列程式碼範例會示範如何使用 CanValidate 方法。 此程式代碼範例是針對 類別提供的較大範例的 PositiveTimeSpanValidator 一部分。

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

適用於