Click or drag to resize
XmlExtensionMethods.WriteElementWithAttribute 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.3.0.0 (5.3.0)
Syntax
public static void WriteElementWithAttribute(
	this XmlWriter writer,
	string elementName,
	string attributeName,
	string attributeValue
)

Parameters

writer
Type: System.Xml.XmlWriter
The writer.
elementName
Type: System.String
Name of the element.
attributeName
Type: System.String
Name of the attribute.
attributeValue
Type: System.String
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