Discuss this help topic in SecureBlackbox Forum

TElFileDataStorage.ReadObject

TElFileDataStorage     See also     


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


Reads data object from the storage.

Declaration

[C#]
    void ReadObject(string ObjName, System.IO.Stream Strm);
    void ReadObject(string ObjName, System.IO.Stream Strm, byte[] ETag);
    void ReadObject(TElFileDataStorageObject Obj, System.IO.Stream Strm);
    void ReadObject(TElFileDataStorageObject Obj, System.IO.Stream Strm, byte[] ETag);
    void ReadObject(TElCustomDataStorageObject Obj, System.IO.Stream Strm);

[VB.NET]
    Sub ReadObject(ByVal ObjName As String, ByVal Strm As System.IO.Stream)
    Sub ReadObject(ByVal ObjName As String, ByVal Strm As System.IO.Stream, ByVal ETag As Byte())
    Sub ReadObject(ByVal Obj As TElFileDataStorageObject, ByVal Strm As System.IO.Stream)
    Sub ReadObject(ByVal Obj As TElFileDataStorageObject, ByVal Strm As System.IO.Stream, ByVal ETag As Byte())
    Sub ReadObject(ByVal Obj As TElCustomDataStorageObject, ByVal Strm As System.IO.Stream)

[Pascal]
    procedure ReadObject(const ObjName : string; Strm : TStream);

[C++]
    void ReadObject(const std::string &ObjName, TStream &Strm);
    void ReadObject(const std::string &ObjName, TStream *Strm);
    void ReadObject(const std::string &ObjName, TStream &Strm, const std::vector<uint8_t> &ETag);
    void ReadObject(const std::string &ObjName, TStream *Strm, const std::vector<uint8_t> &ETag);
    void ReadObject(TElFileDataStorageObject &Obj, TStream &Strm);
    void ReadObject(TElFileDataStorageObject *Obj, TStream *Strm);
    void ReadObject(TElFileDataStorageObject &Obj, TStream &Strm, const std::vector<uint8_t> &ETag);
    void ReadObject(TElFileDataStorageObject *Obj, TStream *Strm, const std::vector<uint8_t> &ETag);

[PHP]
    void ReadObject(string $ObjName, TStream $Strm)
    void ReadObject(string $ObjName, TStream $Strm, array of byte|string|NULL $ETag)
    void ReadObject(TElFileDataStorageObject $Obj, TStream $Strm)
    void ReadObject(TElFileDataStorageObject $Obj, TStream $Strm, array of byte|string|NULL $ETag)
    void ReadObject(TElCustomDataStorageObject $Obj, TStream $Strm)

[Java]
    void readObject(String ObjName, TElStream Strm, byte[] ETag);
    void readObject(String ObjName, TElStream Strm);
    void readObject(TElFileDataStorageObject Obj, TElStream Strm);
    void readObject(TElFileDataStorageObject Obj, TElStream Strm, byte[] ETag);

Parameters

  • ObjName - object name
  • Strm - stream where object content will be read to
  • ETag - ...
  • Obj - ...

Description

    Use this method to read data from the storage.

See also:     ObjectExists     WriteObject    

Discuss this help topic in SecureBlackbox Forum