Discuss this help topic in SecureBlackbox Forum

TElWinAzureDataStorageContainer.ObjectExists

TElWinAzureDataStorageContainer     See also     


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


Checks whether data object exists in the storage. This topic is under developmentā€¦

Declaration

[C#]
    bool ObjectExists(string Name);
    bool ObjectExists(string Name, string SharedAccessSignature);

[VB.NET]
    Function ObjectExists(ByVal Name As String) As Boolean
    Function ObjectExists(ByVal Name As String, ByVal SharedAccessSignature As String) As Boolean

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

[C++]
    bool ObjectExists(const std::string &Name);
    bool ObjectExists(const std::string &Name, const std::string &SharedAccessSignature);

[PHP]
    bool ObjectExists(string $Name)
    bool ObjectExists(string $Name, string $SharedAccessSignature)

[Java]
    boolean objectExists(String Name);
    boolean objectExists(String Name, String SharedAccessSignature);

Parameters

  • Name - name of the data object
  • 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 certain data objects are present in the storage.

See also:     CreateObject    

Discuss this help topic in SecureBlackbox Forum