Discuss this help topic in SecureBlackbox Forum

TElOpenOfficePackage.CloseStream

TElOpenOfficePackage     See also     


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


Closes opened entry.

Declaration

[C#]
    void CloseStream(System.IO.Stream Stream);
    void CloseStream(string Path);

[VB.NET]
    Sub CloseStream(ByVal Stream As System.IO.Stream)
    Sub CloseStream(ByVal Path As String)

[Pascal]
    procedure CloseStream(Stream : TStream);
    procedure CloseStream(Path : string);

[C++]
    void CloseStream(TStream &Stream);
    void CloseStream(TStream *Stream);
    void CloseStream(const std::string &Path);

[PHP]
    void CloseStream(TStream $Stream)
    void CloseStream(string $Path)

[Java]
    void closeStream(TElStream Stream);
    void closeStream(String Path);

Parameters

  • Path - path to the entry
  • Stream - stream that contains the entry data

Description

    Use this method to close opened package entry.

See also:     CreateStream     DeleteStream     GetStream     StreamExists    

Discuss this help topic in SecureBlackbox Forum