LiquidTechnologies.XmlObjects Namespace / LjSerializer Class / Serialize Method / Serialize(TextWriter,Object,LjWriterSettings,XmlQualifiedName) Method
The System.IO.TextWriter to write the JSON data to
The Liquid XML Objects attributed class to serialize
The Liquid XML Objects settings to control the serialization, default configuration is used if null
The name of the root XML element. Only required if the elementObj is a complexType (attributed with LiquidTechnologies.XmlObjects.Attribution.LxComplexTypeDefinitionAttribute).

In This Topic
    Serialize(TextWriter,Object,LjWriterSettings,XmlQualifiedName) Method
    In This Topic
    Serializes a Liquid XML Objects attributed class to an System.IO.TextWriter.
    Syntax
    'Declaration
     
    
    Public Overloads Sub Serialize( _
       ByVal textWriter As System.IO.TextWriter, _
       ByVal elementObj As System.Object, _
       Optional ByVal settings As LjWriterSettings, _
       Optional ByVal elementName As System.Xml.XmlQualifiedName _
    ) 
    public void Serialize( 
       System.IO.TextWriter textWriter,
       System.object elementObj,
       LjWriterSettings settings,
       System.Xml.XmlQualifiedName elementName
    )

    Parameters

    textWriter
    The System.IO.TextWriter to write the JSON data to
    elementObj
    The Liquid XML Objects attributed class to serialize
    settings
    The Liquid XML Objects settings to control the serialization, default configuration is used if null
    elementName
    The name of the root XML element. Only required if the elementObj is a complexType (attributed with LiquidTechnologies.XmlObjects.Attribution.LxComplexTypeDefinitionAttribute).
    Remarks
    The JSON data written is indented and encoded using UTF-8.
    Requirements

    Target Platforms: Windows 10, Windows 8, Windows 7, Windows Vista, Windows Server 2016, Windows Server 2012, Windows Server 2008. Please ensure you have the latest Service Pack for your operating system installed.

    See Also