Condividi tramite


XamlType.LookupIsConstructible Metodo

Definizione

Restituisce un valore che indica se l'oggetto XamlType rappresenta un tipo che può essere costruito secondo la definizione XAML.

protected:
 virtual bool LookupIsConstructible();
protected virtual bool LookupIsConstructible ();
abstract member LookupIsConstructible : unit -> bool
override this.LookupIsConstructible : unit -> bool
Protected Overridable Function LookupIsConstructible () As Boolean

Restituisce

Boolean

true se l'oggetto XamlType rappresenta un tipo che può essere costruito; in caso contrario, false.

Commenti

Questo metodo può essere richiamato dalle chiamate a IsConstructible.

L'implementazione predefinita usa la reflection CLR nell'oggetto UnderlyingType. Il tipo deve essere concreto, non annidato e chiuso. L'implementazione predefinita verifica se il tipo è un tipo di valore e la restituzione di ConstructionRequiresArguments. Per un valore Null UnderlyingType, questo metodo restituisce true.

Eseguire l'override di questo metodo se si vuole IsConstructible restituire un valore diverso rispetto a quello abilitato per impostazione predefinita per la reflection interna.

Si applica a