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

XCData 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 XCData 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
A string that contains the value of the XCData node.

The following example creates an element that contains a CDATA node.


Dim output As New StringBuilder
Dim root As XElement = <Root>
                           <![CDATA[Some content]]>
                       </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