This API is not CLS-compliant.
Namespace:
System.Xml.Linq
Assembly:
System.Xml.Linq (in System.Xml.Linq.dll)
Visual Basic (Declaration)
Public Shared Narrowing Operator CType ( _
attribute As XAttribute _
) As String
Dim input As XAttribute
Dim output As String
output = CType(input, String)
public static explicit operator string (
XAttribute attribute
)
static explicit operator String^ (
XAttribute^ attribute
)
JScript does not support the declaration of new casting operators.
The following example creates an attribute with string content. It then retrieves the value by casting to String.
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);
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
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.
.NET Framework
Supported in: 3.5
.NET Compact Framework
Supported in: 3.5
XNA Framework
Supported in: 3.0
Reference
Other Resources