XmlExtensionMethodsWriteOptionalAttributeStringT Method (XmlWriter, String, T, String) |
Writes an optional attribute string. If attributeValue is equal to the default of T, no attribute is written.
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 WriteOptionalAttributeString<T>(
this XmlWriter writer,
string attributeName,
T attributeValue,
string attributeValueAsString
)
<ExtensionAttribute>
Public Shared Sub WriteOptionalAttributeString(Of T) (
writer As XmlWriter,
attributeName As String,
attributeValue As T,
attributeValueAsString As String
)
Parameters
- writer
- Type: System.XmlXmlWriter
The writer. - attributeName
- Type: SystemString
Name of the attribute. - attributeValue
- Type: T
The attribute value. - attributeValueAsString
- Type: SystemString
The attribute value as string.
Type Parameters
- T
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