XamlType.LookupIsNullable Méthode
Définition
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.
Retourne une valeur qui indique si ce XamlType représente un type Nullable, selon la définition XAML.
protected:
virtual bool LookupIsNullable();
protected virtual bool LookupIsNullable ();
abstract member LookupIsNullable : unit -> bool
override this.LookupIsNullable : unit -> bool
Protected Overridable Function LookupIsNullable () As Boolean
Retours
true
si ce XamlType représente un type Nullable ; sinon, false
.
Remarques
Cette méthode peut être appelée par des appels à IsNullable.
L’implémentation par défaut établit une détermination basée sur le concept nullable de la bibliothèque CLR core, vérifiée par rapport UnderlyingTypeà . Pour une valeur null UnderlyingType, elle retourne true
.
Remplacez cette méthode si vous souhaitez IsNullable utiliser une logique différente.