Discuss this help topic in SecureBlackbox Forum

TElAWSS3DataStorageObject.Read

TElAWSS3DataStorageObject     See also     


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


Reads object's data from the storage.

Declaration

[C#]
    void Read(System.IO.Stream Strm);
    void Read(System.IO.Stream Strm, TSBAWSS3ReadObjectCondition Condition, DateTime DateTime, string ETag);
    void Read(System.IO.Stream Strm, TSBAWSS3ReadObjectCondition Condition, DateTime DateTime, string ETag, TElStringList Metadata, ref string ObjContentType, ref string ObjContentDisposition, ref string ObjETag);
    void Read(System.IO.Stream Strm, TSBAWSS3ReadObjectCondition Condition, DateTime DateTime, string ETag, TElStringList Metadata, ref string ObjContentType, ref string ObjContentDisposition, ref string ObjContentEncoding, ref string ObjETag);

[VB.NET]
    Sub Read(ByVal Strm As System.IO.Stream)
    Sub Read(ByVal Strm As System.IO.Stream, ByVal Condition As TSBAWSS3ReadObjectCondition, ByVal DateTime As DateTime, ByVal ETag As String)
    Sub Read(ByVal Strm As System.IO.Stream, ByVal Condition As TSBAWSS3ReadObjectCondition, ByVal DateTime As DateTime, ByVal ETag As String, ByVal Metadata As TElStringList, ByRef ObjContentType As String, ByRef ObjContentDisposition As String, ByRef ObjETag As String)
    Sub Read(ByVal Strm As System.IO.Stream, ByVal Condition As TSBAWSS3ReadObjectCondition, ByVal DateTime As DateTime, ByVal ETag As String, ByVal Metadata As TElStringList, ByRef ObjContentType As String, ByRef ObjContentDisposition As String, ByRef ObjContentEncoding As String, ByRef ObjETag As String)

[Pascal]
    procedure Read(Strm : TStream);
    procedure Read(Strm : TStream; Condition : TSBAWSS3ReadObjectCondition; DateTime : TDateTime; const ETag : string);
    procedure Read(Strm : TStream; Condition : TSBAWSS3ReadObjectCondition; DateTime : TDateTime; const ETag : string; Metadata : TStringList; var ObjContentType : string; var ObjContentDisposition : string; var ObjETag : string);

[C++]
    void Read(TStream &Strm);
    void Read(TStream *Strm);
    void Read(TStream &Strm, TSBAWSS3ReadObjectCondition Condition, int64_t DateTime, const std::string &ETag);
    void Read(TStream *Strm, TSBAWSS3ReadObjectCondition Condition, int64_t DateTime, const std::string &ETag);
    void Read(TStream &Strm, TSBAWSS3ReadObjectCondition Condition, int64_t DateTime, const std::string &ETag, TElStringList &Metadata, std::string &ObjContentType, std::string &ObjContentDisposition, std::string &ObjETag);
    void Read(TStream *Strm, TSBAWSS3ReadObjectCondition Condition, int64_t DateTime, const std::string &ETag, TElStringList *Metadata, std::string &ObjContentType, std::string &ObjContentDisposition, std::string &ObjETag);
    void Read(TStream &Strm, TSBAWSS3ReadObjectCondition Condition, int64_t DateTime, const std::string &ETag, TElStringList &Metadata, std::string &ObjContentType, std::string &ObjContentDisposition, std::string &ObjContentEncoding, std::string &ObjETag);
    void Read(TStream *Strm, TSBAWSS3ReadObjectCondition Condition, int64_t DateTime, const std::string &ETag, TElStringList *Metadata, std::string &ObjContentType, std::string &ObjContentDisposition, std::string &ObjContentEncoding, std::string &ObjETag);

[PHP]
    void Read(TStream $Strm)
    void Read(TStream $Strm, integer $Condition, DateTime $DateTime, string $ETag)
    void Read(TStream $Strm, integer $Condition, DateTime $DateTime, string $ETag, TElStringList $Metadata, string &$ObjContentType, string &$ObjContentDisposition, string &$ObjETag)
    void Read(TStream $Strm, integer $Condition, DateTime $DateTime, string $ETag, TElStringList $Metadata, string &$ObjContentType, string &$ObjContentDisposition, string &$ObjContentEncoding, string &$ObjETag)

[Java]
    void read(TElStream Strm);
    void read(TElStream Strm, TSBAWSS3ReadObjectCondition Condition, Date DateTime, String ETag, TElStringList Metadata, TSBString ObjContentType, TSBString ObjContentDisposition, TSBString ObjContentEncoding, TSBString ObjETag);
    void read(TElStream Strm, TSBAWSS3ReadObjectCondition Condition, Date DateTime, String ETag, TElStringList Metadata, TSBString ObjContentType, TSBString ObjContentDisposition, TSBString ObjETag);
    void read(TElStream Strm, TSBAWSS3ReadObjectCondition Condition, Date DateTime, String ETag);

Parameters

  • Strm - stream where the object will be read to
  • Condition - condition under which the object will be read
  • DateTime - object's modification date and time
  • ETag - object's entity tag
  • Metadata - contains metadata of the object
  • ObjContentType - contains content type of the object that has been read
  • ObjContentDisposition - contains content disposition of the object that has been read
  • ObjETag - contains entity tag of the object that has been read
  • ObjContentEncoding - ...

Values

Description

    Use this method to read object's data from the storage.

See also:     Delete     Exists     ReadBlock     Write    

Discuss this help topic in SecureBlackbox Forum