LiquidTechnologies.XmlObjects Namespace / LxSerializer<T> Class / Serialize Method / Serialize(Stream,T,LxWriterSettings,XmlQualifiedName) Method
The stream to write the XML data to
The Liquid XML Objects attributed class to serialize
The Liquid XML Objects settings to control the serialization
The name of the root XML element. Only required if T is a complexType (attributed with LiquidTechnologies.XmlObjects.Attribution.LxComplexTypeDefinitionAttribute).

In This Topic
    Serialize(Stream,T,LxWriterSettings,XmlQualifiedName) Method
    In This Topic
    Serializes a class of type T to an System.Xml.XmlWriter.Serializes a class of type T to an System.IO.Stream.
    Syntax
    'Declaration
     
    
    Public Overloads Sub Serialize( _
       ByVal stream As System.IO.Stream, _
       ByVal element As T, _
       Optional ByVal settings As LxWriterSettings, _
       Optional ByVal elementName As System.Xml.XmlQualifiedName _
    ) 
    public void Serialize( 
       System.IO.Stream stream,
       T element,
       LxWriterSettings settings,
       System.Xml.XmlQualifiedName elementName
    )

    Parameters

    stream
    The stream to write the XML data to
    element
    The Liquid XML Objects attributed class to serialize
    settings
    The Liquid XML Objects settings to control the serialization
    elementName
    The name of the root XML element. Only required if T is a complexType (attributed with LiquidTechnologies.XmlObjects.Attribution.LxComplexTypeDefinitionAttribute).
    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