Discuss this help topic in SecureBlackbox Forum

TElWinAzureDataStorage.RenewObjectLock

TElWinAzureDataStorage     See also     


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


Renews an object lock.

Declaration

[C#]
    void RenewObjectLock(string ContainerName, string Name, int Seconds, string SharedAccessSignature, string LeaseID);

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

[Pascal]
    procedure RenewObjectLock(const ContainerName : string; const Name : string; Seconds : integer; const SharedAccessSignature : string; const LeaseID : string);

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

[PHP]
    void RenewObjectLock(string $ContainerName, string $Name, integer $Seconds, string $SharedAccessSignature, string $LeaseID)

[Java]
    void renewObjectLock(String ContainerName, String Name, int Seconds, String SharedAccessSignature, String LeaseID);

Parameters

  • ContainerName - name of the container where the desired object belongs.
  • Name - name of the desired object.
  • Seconds - specifies the duration of the lease in seconds. Value of -1 defines a lease that never expires.
  • SharedAccessSignature - contains the Shared Access Signature (SAS).
  • LeaseID - specifies lease ID.

Description

    Call this method to renew the object lock..

See also:     LockObject     UnlockObject    

Discuss this help topic in SecureBlackbox Forum