Discuss this help topic in SecureBlackbox Forum

TElCustomDataStorage.ReadObject

TElCustomDataStorage     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Reads object from data storage.

Declaration

[C#]
    void ReadObject(TElCustomDataStorageObject Obj, System.IO.Stream Strm);

[VB.NET]
    Sub ReadObject(ByVal Obj As TElCustomDataStorageObject, ByVal Strm As System.IO.Stream)

[Pascal]
    procedure ReadObject(Obj : TElCustomDataStorageObject; Strm : TStream);

[C++]
    void ReadObject(TElCustomDataStorageObject &Obj, TStream &Strm);
    void ReadObject(TElCustomDataStorageObject *Obj, TStream *Strm);

[PHP]
    void ReadObject(TElCustomDataStorageObject $Obj, TStream $Strm)

[Java]
    void readObject(TElCustomDataStorageObject Obj, TElStream Strm);

Parameters

  • Obj - Data object to be copied
  • Strm - Destination stream where the object should be read to

Description

    Use this method to read an object from the storage.

See also:     WriteObject    

Discuss this help topic in SecureBlackbox Forum