XName Class
Represents a name of an XML element or attribute.
Namespace: System.Xml.Linq
Assembly: System.Xml.Linq (in System.Xml.Linq.dll)
The XName type exposes the following members.
| Name | Description | |
|---|---|---|
![]() ![]() ![]() | LocalName | Gets the local (unqualified) part of the name. |
![]() ![]() ![]() | Namespace | Gets the namespace part of the fully qualified name. |
![]() ![]() ![]() | NamespaceName | Returns the URI of the XNamespace for this XName. |
| Name | Description | |
|---|---|---|
![]() ![]() ![]() | Equals | Determines whether the specified XName is equal to this XName. (Overrides Object.Equals(Object).) |
![]() ![]() ![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.) |
![]() ![]() ![]() ![]() | Get(String) | Gets an XName object from an expanded name. |
![]() ![]() ![]() ![]() | Get(String, String) | Gets an XName object from a local name and a namespace. |
![]() ![]() ![]() | GetHashCode | Gets a hash code for this XName. (Overrides Object.GetHashCode().) |
![]() ![]() ![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() ![]() ![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() ![]() ![]() | ToString | Returns the expanded XML name in the format {namespace}localname. (Overrides Object.ToString().) |
| Name | Description | |
|---|---|---|
![]() ![]() ![]() ![]() | Equality | Returns a value indicating whether two instances of XName are equal. |
![]() ![]() ![]() ![]() | Implicit(String to XName) | Converts a string formatted as an expanded XML name (that is,{namespace}localname) to an XName object. |
![]() ![]() ![]() ![]() | Inequality | Returns a value indicating whether two instances of XName are not equal. |
| Name | Description | |
|---|---|---|
![]() ![]() ![]() ![]() | IEquatable(XName).Equals | Indicates whether the current XName is equal to the specified XName. |
XML names include a namespace and a local name. A fully qualified name is the combination of the namespace and local name.
Creating an XName Object
XName does not contain any public constructors. Instead, this class provides an implicit conversion from String that allows you to create an XName. The most common place you use this conversion is when constructing an element or attribute: The first argument to the XElement constructor is an XName. By passing a string, you take advantage of the implicit conversion. The following code creates an element with a name that is in no namespace:
XElement root = new XElement("ElementName", "content");
In Visual Basic, it is more appropriate to use XML literals:
Dim root As XElement = <ElementName>content</ElementName>
Assigning a string to an XName uses the implicit conversion from String.
The Visual Basic example creates the XElement using XML literals. Even though XML literals are used, an XName object is created for the XElement.
In addition, you can call the Get method for an XName object. However, the recommended way is to use the implicit conversion from string.
Creating an XName in a Namespace
As with XML, an XName can be in a namespace, or it can be in no namespace.
For C#, the recommended approach for creating an XName in a namespace is to declare the XNamespace object, then use the override of the addition operator.
For Visual Basic, the recommended approach is to use XML literals and global namespace declarations to create XML that is in a namespace.
Creating an XName in no Namespace
The Namespace property of an XName object is guaranteed to not be null. If the XName is in no namespace, then the Namespace property will be set to None. The following code demonstrates this:
Using Expanded Names
You can also create an XName from a expanded XML name in the form {namespace}localname:
This example produces the following output:
<ElementName xmlns="http://www.adventure-works.com">content</ElementName>
Be aware that creating an XName through an expanded name is less efficient than creating an XNamespace object and using the override of the addition operator. It is also less efficient than importing a global namespace and using XML literals in Visual Basic.
If you create an XName using an expanded name, LINQ to XML must find the atomized instance of a namespace. This work must be repeated for every use of an expanded name. This additional time is likely to be negligible when writing LINQ queries; however, it might be significant when creating a large XML tree.
XName Objects are Atomized
XName objects are guaranteed to be atomized; that is, if two XName objects have exactly the same namespace and exactly the same local name, they will share the same instance. The equality and comparison operators are also provided explicitly for this purpose.
Among other benefits, this feature allows for faster execution of queries. When filtering on the name of elements or attributes, the comparisons expressed in predicates use identity comparison, not value comparison. It is much faster to determine that two references actually refer to the same object than to compare two strings.
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.

