Spread Windows Forms 17
FarPoint.Win Assembly / FarPoint.Win Namespace / Serializer Class / SetObjectXml Method
Object to deserialize
XML string returned by GetObjectXml
Name of XML element


In This Topic
    SetObjectXml Method
    In This Topic
    Deserializes an object saved with GetObjectXml using the specified XML string.
    Syntax
    'Declaration
     
    
    Public Shared Function SetObjectXml( _
       ByVal o As ISerializeSupport, _
       ByVal xml As String, _
       ByVal elementName As String _
    ) As Boolean
    'Usage
     
    
    Dim o As ISerializeSupport
    Dim xml As String
    Dim elementName As String
    Dim value As Boolean
     
    value = Serializer.SetObjectXml(o, xml, elementName)
    public static bool SetObjectXml( 
       ISerializeSupport o,
       string xml,
       string elementName
    )

    Parameters

    o
    Object to deserialize
    xml
    XML string returned by GetObjectXml
    elementName
    Name of XML element
    See Also