Discuss this help topic in SecureBlackbox Forum

TElHTTPSClient.Delete

TElHTTPSClient     See also     


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


Sends the DELETE request to server

Declaration

[C#]
    int Delete(string URL);

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

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

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

[PHP]
    integer Delete(string $URL)

[Java]
    int delete(String URL);

Parameters

  • URL - specifies the resource address. This method does NOT encode the parameters that you pass in the URL, they need to be encoded prior to calling the method.

Return value

    HTTP result code

Description

    Use this method to send 'DELETE' request to server. In response to this request, server may (without any guaranties) delete the resource, specified in URL.

See also:     Get     Post     Head     Put     Trace     Options    

Discuss this help topic in SecureBlackbox Forum