Gets the prefix associated with a namespace for this XElement.
Assembly: System.Xml.Linq (in System.Xml.Linq.dll)
Public Function GetPrefixOfNamespace ( _ ns As XNamespace _ ) As String
public string GetPrefixOfNamespace( XNamespace ns )
public:
String^ GetPrefixOfNamespace(
XNamespace^ ns
)
member GetPrefixOfNamespace : ns:XNamespace -> string
Parameters
- ns
- Type: System.Xml.Linq.XNamespace
An XNamespace to look up.
This method looks through the XML tree for namespace attributes that are in scope for this element. Namespace prefixes are specified in namespace attributes that are in the XML tree.
If the namespace is the default namespace, and there is no prefix for the namespace, then this method returns null.
The following example creates an XML tree that contains a namespace with a prefix. It then uses this method to retrieve the prefix for the namespace. Notice that this example uses the implicit conversion from string to XNamespace when calling this method.
XElement xmlTree = XElement.Parse("<Root xmlns:aw='http://www.adventure-works.com'/>"); string prefix = xmlTree.GetPrefixOfNamespace("http://www.adventure-works.com"); Console.WriteLine("Prefix: {0}", prefix);
Imports <xmlns:aw="http://www.adventure-works.com"> Module Module1 Sub Main() Dim xmlTree As XElement = <aw:Root/> Dim prefix As String = xmlTree.GetPrefixOfNamespace("http://www.adventure-works.com") Console.WriteLine("Prefix: {0}", prefix) End Sub End Module
This example produces the following output:
Prefix: aw
.NET Framework
Supported in: 4, 3.5.NET Framework Client Profile
Supported in: 4, 3.5 SP1Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.