XText Constructor (String)
Collapse the table of content
Expand the table of content

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 _
)

Parameters

value
Type: System.String
The String that contains the value of the XText node.

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

Windows Phone

Show:
© 2017 Microsoft