System.Zip.TOnCreateCustomStream

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TOnCreateCustomStream = function(const InStream: TStream; const ZipFile: TZipFile; const Item: TZipHeader; IsEncrypted: Boolean): TStream of object;

C++

typedef System::Classes::TStream* __fastcall (__closure *TOnCreateCustomStream)(System::Classes::TStream* const InStream, TZipFile* const ZipFile, const TZipHeader &Item, bool IsEncrypted);

Properties

Type Visibility Source Unit Parent
type
typedef
public
System.Zip.pas
System.Zip.hpp
System.Zip System.Zip

Description

Event type for events that allow access to the raw stream.

For example, OnCreateDecompressStream event is of type TOnCreateCustomStream and fires before a file inside a zip file is decompressed, allowing access to the raw stream for decrypt purposes.

See Also