Discuss this help topic in SecureBlackbox Forum

TElMessagePart.DisposeDataStream

TElMessagePart     See also     


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


This property specifies if the stream referenced by the DataStream property will be destroyed/disposed automatically when the part is destroyed/disposed.

Declaration

[C#]
    bool DisposeDataStream;

[VB.NET]
    Property DisposeDataStream As Boolean

[Pascal]
    property DisposeDataStream : boolean;

[C++]
    bool get_DisposeDataStream();
    void set_DisposeDataStream(bool Value);

[PHP]
    bool get_DisposeDataStream()
    void set_DisposeDataStream(bool $Value)

[Java]
    boolean getDisposeDataStream();
    void setDisposeDataStream(boolean Value);

Description

    The default value is True. If you whant the stream no to be destroyed by the part class, set this property to False explicitly.

See also:     DataStream    

Discuss this help topic in SecureBlackbox Forum