.NET Framework Class Library
XAttribute..::.Explicit Operator

Cast the value of this XAttribute to a String.

This API is not CLS-compliant. 

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

Visual Basic (Declaration)
Public Shared Narrowing Operator CType ( _
    attribute As XAttribute _
) As String
Visual Basic (Usage)
Dim input As XAttribute
Dim output As String

output = CType(input, String)
C#
public static explicit operator string (
    XAttribute attribute
)
Visual C++
static explicit operator String^ (
    XAttribute^ attribute
)
JScript
JScript does not support the declaration of new casting operators.

Parameters

attribute
Type: System.Xml.Linq..::.XAttribute
The XAttribute to cast to String.

Return Value

Type: System..::.String
A String that contains the content of this XAttribute.
Examples

The following example creates an attribute with string content. It then retrieves the value by casting to String.

C#
XElement root = new XElement("Root",
    new XAttribute("Att", "attribute content")
);
XAttribute att = root.Attribute("Att");
string str = (string)att;
Console.WriteLine("(string)att={0}", str);
Visual Basic
Dim root As XElement = <Root Att="attribute content"/>
Dim att As XAttribute = root.Attribute("Att")
Dim str As String = CStr(att)
Console.WriteLine("(string)att={0}", str)

This example produces the following output:

(string)att=attribute content
Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC, Xbox 360, Zune

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information

.NET Framework

Supported in: 3.5

.NET Compact Framework

Supported in: 3.5

XNA Framework

Supported in: 3.0
See Also

Reference

Other Resources

Tags :


Page view tracker