Discuss this help topic in SecureBlackbox Forum

TElWinAzureDataStorageContainer.Exists

TElWinAzureDataStorageContainer     See also     


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


Checks whether the data container exists in the storage.

Declaration

[C#]
    bool Exists();
    bool Exists(string SharedAccessSignature);

[VB.NET]
    Function Exists() As Boolean
    Function Exists(ByVal SharedAccessSignature As String) As Boolean

[Pascal]
    function Exists : boolean;
    function Exists(const SharedAccessSignature : string) : boolean;

[C++]
    bool Exists();
    bool Exists(const std::string &SharedAccessSignature);

[PHP]
    bool Exists()
    bool Exists(string $SharedAccessSignature)

[Java]
    boolean exists(String SharedAccessSignature);
    boolean exists();

Parameters

  • SharedAccessSignature - contains the Shared Access Signature (SAS).

Return value

    Returns True if the container exists in the data storage and False otherwise.

Description

    Use this method to check if the data container is present in the storage.

See also:     Delete    

Discuss this help topic in SecureBlackbox Forum