Discuss this help topic in SecureBlackbox Forum

TElWinAzureDataStorageObject.Exists

TElWinAzureDataStorageObject     See also     


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


Checks whether data object 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 object exists in the data storage and False otherwise.

Description

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

See also:     Delete    

Discuss this help topic in SecureBlackbox Forum