This documentation is archived and is not being maintained.
XText Constructor (String)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation . ]
Initializes a new instance of the XText class.
Namespace:
System.Xml.Linq
Assembly:
System.Xml.Linq (in System.Xml.Linq.dll)
'Declaration
Public Sub New ( _
value As String _
)
You typically do not create text nodes by using the XText constructors. When you pass text content when constructing an XElement , text nodes are automatically created.
The following example creates an element that contains a text node.
Dim output As New StringBuilder
Dim root As XElement = <Root>Some text</Root>
output.Append(root)
output.Append(Environment.NewLine)
OutputTextBlock.Text = output.ToString()
Windows Phone OS Supported in: 8.1, 8.0, 7.1, 7.0