Discuss this help topic in SecureBlackbox Forum
Specifies the stream where the decrypted data is to be written.
Declaration
[C#]
System.IO.Stream OutputStream;
[VB.NET]
Property OutputStream As System.IO.Stream
[Pascal]
property OutputStream : TStream;
[C++]
TStream* get_OutputStream();
void set_OutputStream(TStream &Value);
void set_OutputStream(TStream *Value);
[PHP]
TStream get_OutputStream()
void set_OutputStream(TStream $Value)
[Java]
TElStream getOutputStream();
void setOutputStream(TElStream Value);
Description
Use this property to specify the stream for decrypted data.
If this property value is
null TElPGPReader will fire
OnCreateOutputStream event
and try to get an output stream through it. If the value is not null, the event will not be fired.
Discuss this help topic in SecureBlackbox Forum