LongValidator.CanValidate(Type) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
判斷是否可以驗證物件的型別。
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
參數符合 Int64 值,則為 true
,否則為 false
。
範例
下列程式碼範例會示範如何使用 CanValidate 方法。 此程式代碼範例是提供給 類別之較大範例的 LongValidator 一部分。
// Determine if the object to validate can be validated.
Console.WriteLine("CanValidate: {0}",
myLongValidator.CanValidate(testLong.GetType()));
' Determine if the object to validate can be validated.
Console.WriteLine("CanValidate: {0}", _
myLongValidator.CanValidate(testLong.GetType()))