Discuss this help topic in SecureBlackbox Forum

TElHTTPSWebDAVClient.Unlock

TElHTTPSWebDAVClient     See also     


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


Removes the lock from the resourse.

Declaration

[C#]
    int Unlock(string URL, string Token);

[VB.NET]
    Function Unlock(ByVal URL As String, ByVal Token As String) As Integer

[Pascal]
    function Unlock(const URL : string; const Token : string) : integer;

[C++]
    int32_t Unlock(const std::string &URL, const std::string &Token);

[PHP]
    integer Unlock(string $URL, string $Token)

[Java]
    int unlock(String URL, String Token);

Parameters

  • URL - URL of the locked resource.
  • Token - specifies the lock token.

Return value

    On success, returns server status code, otherwise returns -1.

Description

    Use this method to remove the lock from the resource.

See also:     Lock    

Discuss this help topic in SecureBlackbox Forum