Discuss this help topic in SecureBlackbox Forum

TElTarReader.ExtractContents

TElTarReader     See also     


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


Extracts entry's data to a byte array.

Declaration

[C#]
    byte[] ExtractContents(TElTarArchiveDirectoryEntry Entry);

[VB.NET]
    Function ExtractContents(ByVal Entry As TElTarArchiveDirectoryEntry) As Byte()

[Pascal]
    function ExtractContents(Entry : TElTarArchiveDirectoryEntry) : ByteArray;

[C++]
    void ExtractContents(TElTarArchiveDirectoryEntry &Entry, std::vector<uint8_t> &OutResult);
    void ExtractContents(TElTarArchiveDirectoryEntry *Entry, std::vector<uint8_t> &OutResult);

[PHP]
    string ExtractContents(TElTarArchiveDirectoryEntry $Entry)

[Java]
    byte[] extractContents(TElTarArchiveDirectoryEntry Entry);

Parameters

  • Entry - the entry which data is needed.

Return value

Returns an array with the entry data.

Description

Use this method to get the entry's data as a byte array.

See also:     Extract    

Discuss this help topic in SecureBlackbox Forum