NamespaceDeclaration Class
Declares the identifier and the prefix of a XAML namespace by storing these string values as separate properties.
Assembly: System.Xaml (in System.Xaml.dll)
| Name | Description | |
|---|---|---|
![]() | NamespaceDeclaration(String^, String^) | Initializes a new instance of the NamespaceDeclaration class using initial property values. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
NamespaceDeclaration represents XAML namespace information as part of a XAML node stream. The NamespaceDeclaration class is a node type that is not truly an object or member; instead, it is a discrete node type.
In the XAML node stream, a NamespaceDeclaration is encountered just prior to the object or member to which that XAML namespace applies.
By convention, the identifier of a XAML namespace resembles a Uniform Resource Identifier (URI). However, the Namespace property of NamespaceDeclaration is of type String. The APIs of .NET Framework XAML Services usually treat XAML namespace identifiers as strings. The relative versus absolute distinctions in the true Uri type are irrelevant for identifying a XAML (or XML) namespace. The URI-as-namespace convention is also typical in XML.
Objects of this type are used as input for the XamlObjectWriter::WriteNamespace method when writing XAML node stream information into an object graph. Objects of this type are used as input for the XamlXmlWriter::WriteNamespace method when writing XAML node stream information as XML for serialization.
A namespace declaration may have a String::Empty value for the prefix. A String::Empty prefix represents a declaration of the default XAML namespace.
Available since 4.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


