Spread Windows Forms 17
FarPoint.Win Assembly / FarPoint.Win Namespace / Serializer Class / SaveObject Method / SaveObject(Object,Stream,String) Method
Object to save (must implement ISerializeSupport)
Stream to save object to
Name of root XML element


In This Topic
    SaveObject(Object,Stream,String) Method
    In This Topic
    Saves an object as XML to a stream.
    Syntax
    'Declaration
     
    
    Public Overloads Shared Function SaveObject( _
       ByVal o As Object, _
       ByVal stream As Stream, _
       ByVal rootElement As String _
    ) As Boolean
    'Usage
     
    
    Dim o As Object
    Dim stream As Stream
    Dim rootElement As String
    Dim value As Boolean
     
    value = Serializer.SaveObject(o, stream, rootElement)
    public static bool SaveObject( 
       object o,
       Stream stream,
       string rootElement
    )

    Parameters

    o
    Object to save (must implement ISerializeSupport)
    stream
    Stream to save object to
    rootElement
    Name of root XML element
    See Also