Discuss this help topic in SecureBlackbox Forum

TElWinAzureDataStorage.UnlockObject

TElWinAzureDataStorage     See also     


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


Unlocks the specified object lock.

Declaration

[C#]
    void UnlockObject(string ContainerName, string Name, string SharedAccessSignature, string LeaseID);

[VB.NET]
    Sub UnlockObject(ByVal ContainerName As String, ByVal Name As String, ByVal SharedAccessSignature As String, ByVal LeaseID As String)

[Pascal]
    procedure UnlockObject(const ContainerName : string; const Name : string; const SharedAccessSignature : string; const LeaseID : string);

[C++]
    void UnlockObject(const std::string &ContainerName, const std::string &Name, const std::string &SharedAccessSignature, const std::string &LeaseID);

[PHP]
    void UnlockObject(string $ContainerName, string $Name, string $SharedAccessSignature, string $LeaseID)

[Java]
    void unlockObject(String ContainerName, String Name, String SharedAccessSignature, String LeaseID);

Parameters

  • ContainerName - name of the container where the desired object belongs.
  • LeaseID - specifies lease ID.
  • Name - the name of the desired object.
  • SharedAccessSignature - contains the Shared Access Signature (SAS).

Description

    Use this method to unlock the desired object.

See also:     LockObject     RenewObjectLock    

Discuss this help topic in SecureBlackbox Forum