XamlType.GetXamlNamespaces 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 list of string identifiers for XAML namespaces that the type is included in.
public:
virtual System::Collections::Generic::IList<System::String ^> ^ GetXamlNamespaces();
public virtual System.Collections.Generic.IList<string> GetXamlNamespaces ();
abstract member GetXamlNamespaces : unit -> System.Collections.Generic.IList<string>
override this.GetXamlNamespaces : unit -> System.Collections.Generic.IList<string>
Public Overridable Function GetXamlNamespaces () As IList(Of String)
Returns
A list of string values, where each string is the URI identifier for a XAML namespace.
Remarks
Typical XAML namespace identifiers are strings in URI form.
The default implementation checks the following, in order: the XAML namespace that is supplied in construction (XamlType(String, String, IList<XamlType>, XamlSchemaContext) signature only); and the namespaces that are available from the schema context. If these are each null
, a new list is generated that contains a single empty string. You can override this method to change the lookup methodology.