Document.CreateCDATASection

Document.CreateCDATASection method

Creates a CDATASection node whose value is the specified string.

public CDATASection CreateCDATASection(string data)
ParameterTypeDescription
dataStringThe CDATA content.

Return Value

The CDATASection.

Examples

var cdata = document.CreateCDATASection(data)

See Also