MindFusion.UI for WebForms Programmer's Guide

XmlPersistContext.WriteSByte Method

See Also
 





Write a 8-bit signed integer value with the specified name.

Namespace: MindFusion.UI.Web
Assembly: MindFusion.UI.Web

 Syntax

C#  Copy Code

public XmlElement WriteSByte (
    sbyte byteValue,
    string elementName,
    XmlElement parentElement
)

Visual Basic  Copy Code

Public Function WriteSByte( _
    byteValue As SByte, _
    elementName As String, _
    parentElement As XmlElement _
) As XmlElement

 Parameters

byteValue

Type: SByte
The sbyte value to write.

elementName

Type: String
A string specifying the name of the element.

parentElement

Type: XmlElement
The parent XML element.

 Return Value

Type: XmlElement
The created XmlElement

 See Also