LongValidator.CanValidate(Type) Méthode
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Détermine si le type de l'objet peut être validé.
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 d'objet.
true
si le paramètre type
correspond à une valeur Int64 ; sinon, false
.
L'exemple de code suivant illustre l'utilisation de la méthode CanValidate. Cet exemple de code fait partie d’un exemple plus grand fourni pour la LongValidator classe .
// 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()))
Commentaires sur .NET
.NET est un projet open source. Sélectionnez un lien pour fournir des commentaires :