Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 3.5
XAttribute Class
Explicit Method
 Explicit Operator

  Switch on low bandwidth view
This page is specific to
Microsoft Visual Studio 2008/.NET Framework 3.5

Other versions are also available for the following:
.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)
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.

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

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
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker