Discuss this help topic in SecureBlackbox Forum

TElMessagePart.SaveDataToStream

TElMessagePart     See also     


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


Writes part contents to the stream.

Declaration

[C#]
    int SaveDataToStream(System.IO.Stream Stream);

[VB.NET]
    Function SaveDataToStream(ByVal Stream As System.IO.Stream) As Integer

[Pascal]
    function SaveDataToStream(Stream: TElNativeStream): ELMIMERESULT;

[C++]
    int32_t SaveDataToStream(TStream &Stream);
    int32_t SaveDataToStream(TStream *Stream);

[PHP]
    integer SaveDataToStream(TStream $Stream)

[Java]
    int saveDataToStream(TElStream Stream);

Parameters

  • Stream - the stream to which the data will be written.

Return value

    Returns 0 (EL_OK) on success;
    Error otherwise.

Description

    Use this method to save part contents to the stream.

See also:     GetData     SaveDataToFile     SetData    

Discuss this help topic in SecureBlackbox Forum