Discuss this help topic in SecureBlackbox Forum

TElMemoryStream Constructor

TElMemoryStream     


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


Creates a new memory stream.

Declaration

[C#]
    not available

[VB.NET]
    not available

[Pascal]
    not implemented;

[C++]
    not available

[PHP]
    not available

[Java]
    public TElMemoryStream(InputStream Stream);
    public TElMemoryStream(byte[] Buffer, int Offset, int Count);
    public TElMemoryStream();
    public TElMemoryStream(InputStream InStream, OutputStream OutStream);

Parameters

  • Buffer - buffer with data from which to create the new stream object.
  • Offset - the offset of the data that should be put in the new stream.
  • Count - the number of bytes that shaould be put in the new stream.
  • Stream - stream from which to create the new stream object.
  • InStream - the input stream for the new stream.
  • OutStream - the output stream for the new stream.

Description

    Use this method to create a new TElMemoryStream object.

Discuss this help topic in SecureBlackbox Forum