Specifies a mapping in an assembly between an XML namespace identifier and a CLR namespace within that assembly.
<AttributeUsageAttribute(AttributeTargets.Assembly, AllowMultiple := True)> _ Public NotInheritable Class XmlnsDefinitionAttribute _ Inherits Attribute
[AttributeUsageAttribute(AttributeTargets.Assembly, AllowMultiple = true)] public sealed class XmlnsDefinitionAttribute : Attribute
The XmlnsDefinitionAttribute type exposes the following members.
In a XAML file, if the xmlns attribute for an element tag or attribute matches the XmlNamespace in the XmlnsDefinitionAttribute, a XAML processor can use the ClrNamespace and AssemblyName stored in the XmlnsDefinitionAttribute to check if the element or attribute matches any type inside the namespace in the assembly. This is how a XAML processor can discover the assemblies that define the types that are created when processing XAML into an object tree. In particular, a XAML processor uses XmlnsDefinitionAttribute from known and loaded reference assemblies for cases where the namespace identifier is a URI, and the namespace is not defined by an explicit CLR-namespace/assembly combination.
For more information on how to use XmlnsDefinitionAttribute and XmlnsPrefixAttribute to declare XAML namespaces and hint a prefix for designers, see "Applying XAML Namespace Attributes to Custom Assemblies" section of Silverlight XAML Namespaces, and Mapping XAML Namespaces as Prefixes.
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.