XamlType.LookupIsAmbient Method

Definition

Returns a value that indicates whether this XamlType represents an ambient type, as per the XAML definition.

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

Returns

true if this XamlType represents an ambient type; otherwise, false.

Remarks

This method can be invoked by calls to IsAmbient.

The default implementation uses CLR reflection on the UnderlyingType and can check the base types. This implementation checks for the AmbientAttribute that is applied to the relevant type's definition at the class level and returns true in this case. All other cases return false.

Override this method if you want IsAmbient to return a different value than is enabled by default internal reflection.

Applies to