Click or drag to resize
XmlExtensionMethodsWriteCDataElement Method
Writes a new element to the writer with the element data in a CData block

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntax
public static void WriteCDataElement(
	this XmlWriter writer,
	string elementName,
	string elementData
)

Parameters

writer
Type: System.XmlXmlWriter
The writer.
elementName
Type: SystemString
Name of the element.
elementData
Type: SystemString
The element data.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type XmlWriter. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also