Search
XmlSerializationContext.WriteByte Method
See Also
 





Writes a byte value as a System.Xml.XmlElement object with the the specified name and the specified parent.

Namespace: MindFusion.Charting.Wpf
Assembly: MindFusion.Charting.Wpf

 Syntax

C#  Copy Code

public XmlElement WriteByte (
    byte byteValue,
    string elementName,
    XmlElement parentElement
)

Visual Basic  Copy Code

Public Function WriteByte( _
    byteValue As Byte, _
    elementName As String, _
    parentElement As XmlElement _
) As XmlElement

 Parameters

byteValue

The byte value to write.

elementName

The name of the new element.

parentElement

The parent of the new element.

 Return Value

The newly created System.Xml.XmlElement.

 See Also