ImageGear .NET v25.2 - Updated
ImageGear.Art Assembly / ImageGear.ART Namespace / ImGearARTSecureObjectData Class / GetSerializationString Method




In This Topic
    GetSerializationString Method
    In This Topic
    Gets encoded string that has to be serialized.
    Syntax
    'Declaration
     
    Public Overridable Function GetSerializationString() As String
    'Usage
     
    Dim instance As ImGearARTSecureObjectData
    Dim value As String
     
    value = instance.GetSerializationString()
    public virtual string GetSerializationString()
    public: virtual string* GetSerializationString(); 
    public:
    virtual String^ GetSerializationString(); 

    Return Value

    String value. If the return value is null or empty, it means there is nothing to serialize.
    Remarks
    The method is called in case of saving Secure object to Xml file. If you need to save data into Xml file, override this method in children classes. Use ImGearARTLoadEvents.CreatingMark, ImGearARTLoadEvents.CreatingGroup, and ImGearARTLoadEvents.CreatingPage events to load this string from Xml file.
    See Also