Discuss this help topic in SecureBlackbox Forum

TElHTTPSWebDAVClient.Delete

TElHTTPSWebDAVClient     See also     


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


Deletes a remote resource.

Declaration

[C#]
    int Delete(string URL, string IfHeader);
    int Delete(string URL);

[VB.NET]
    Function Delete(ByVal URL As String, ByVal IfHeader As String) As Integer
    Function Delete(ByVal URL As String) As Integer

[Pascal]
    function Delete(const URL : string; const IfHeader : string = '') : integer;

[C++]
    int32_t Delete(const std::string &URL, const std::string &IfHeader);

[PHP]
    integer Delete(string $URL, string $IfHeader)
    integer Delete(string $URL)

[Java]
    int delete(String URL, String IfHeader);

Parameters

  • URL - URL of the resource to be deleted.
  • IfHeader - specifies the If header of the request.

Return value

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

Description

    Use this method to delete a remote resource.

See also:     Copy     Move    

Discuss this help topic in SecureBlackbox Forum