LongValidator.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 パラメーターが 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()))

適用対象