XElement Explicit Conversion (XElement to String)
.NET Framework 4.5
This API is not CLS-compliant. Namespace: System.Xml.Linq
Assembly: System.Xml.Linq (in System.Xml.Linq.dll)
Parameters
- element
- Type: System.Xml.Linq.XElement
If the XElement has children, the concatenated string value of all of the element's text and descendant's text is returned.
The following example creates an element with string content. It then retrieves the value by casting to String.
XElement root = XElement.Parse("<Root>abc <b>def </b>ghi</Root>"); Console.WriteLine("(string)root={0}", (string)root);
This example produces the following output:
(string)root=abc def ghi
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.