Discuss this help topic in SecureBlackbox Forum

TElCompoundFileStorageEntry.StreamExists

TElCompoundFileStorageEntry     See also     


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


Checks if the stream with given name exists.

Declaration

[C#]
    bool StreamExists(string StreamName);

[VB.NET]
    Function StreamExists(ByVal StreamName As String) As Boolean

[Pascal]
    function StreamExists(const StreamName : WideString) : boolean;

[C++]
    bool StreamExists(const sb_u16string &StreamName);
    bool StreamExists(const std::wstring &StreamName);

[PHP]
    bool StreamExists(string $StreamName)

[Java]
    boolean streamExists(String StreamName);

Parameters

  • StreamName - name of the stream

Return value

    Returns True if the stream with the specified name exists in the storage, and False otherwise.

Description

    Use this method to check if the stream with the specified name exists in the storage.

See also:     GetStream     FindEntryByName    

Discuss this help topic in SecureBlackbox Forum