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.4.0.0 (5.4.0)
Syntax public static void WriteCDataElement(
this XmlWriter writer,
string elementName,
string elementData
)
<ExtensionAttribute>
Public Shared Sub WriteCDataElement (
writer As XmlWriter,
elementName As String,
elementData As String
)
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