XamlType.LookupIsAmbient Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.