XName.Get Method (String)

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Gets an XName object from an expanded name.

Namespace:  System.Xml.Linq
Assembly:  System.Xml.Linq (in System.Xml.Linq.dll)

Syntax

'Declaration
Public Shared Function Get ( _
    expandedName As String _
) As XName
public static XName Get(
    string expandedName
)

Parameters

  • expandedName
    Type: System.String
    A String that contains an expanded XML name in the format {namespace}localname.

Return Value

Type: System.Xml.Linq.XName
An XName object constructed from the expanded name.

Remarks

This method contains overloads that allow you to create an XName. You can create it from a expanded XML name in the form {namespace}localname, or from a namespace and a local name, specified separately.

A much more common and easier way to create an XName is to use the implicit conversion from string.

Because XName are atomized, if there is an existing XName with exactly the same name, the assigned variable will refer to the existing XName. If there is no existing XName, a new one will be created and initialized.

Examples

The following example shows the use of this method.

'add the following line to the the Imports section:
'Imports <xmlns="https://www.adventure-works.com">
Dim output As New StringBuilder
Dim name As XName = XName.Get("{https://www.adventure-works.com}Root")
Dim el As XElement = New XElement(name, "content")
output.Append(el)
output.Append(Environment.NewLine)

' The preferred approach for specifying an XName in a namespace
' for Visual Basic is to import a global namespace.
Dim el2 As XElement = <Root>content</Root>
output.Append(el2)
output.Append(Environment.NewLine)

OutputTextBlock.Text = output.ToString()
StringBuilder output = new StringBuilder();
XName name = XName.Get("{https://www.adventure-works.com}Root");
XElement el = new XElement(name, "content");
output.Append(el + Environment.NewLine);

// This is the preferred approach for specifying the XName in the
// constructor of XElement.
XNamespace aw = "https://www.adventure-works.com";
XElement el2 = new XElement(aw + "Root", "content");
output.Append(el2 + Environment.NewLine);

OutputTextBlock.Text = output.ToString();

Version Information

Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0

XNA Framework

Supported in: Xbox 360, Windows Phone OS 7.0

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.