XmlExtensionMethodsWriteElementWithAttribute Method |
Writes a full element with the name specified and an additional attribute with the name and value specified.
Namespace:
SD.LLBLGen.Pro.ORMSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.1.0.0 (5.1.0)
Syntax public static void WriteElementWithAttribute(
this XmlWriter writer,
string elementName,
string attributeName,
string attributeValue
)
<ExtensionAttribute>
Public Shared Sub WriteElementWithAttribute (
writer As XmlWriter,
elementName As String,
attributeName As String,
attributeValue As String
)
Parameters
- writer
- Type: System.XmlXmlWriter
The writer. - elementName
- Type: SystemString
Name of the element. - attributeName
- Type: SystemString
Name of the attribute. - attributeValue
- Type: SystemString
The attribute value.
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