Discuss this help topic in SecureBlackbox Forum

TElHTTPSClient.Get

TElHTTPSClient     See also     


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


Sends the GET request to server.

Declaration

[C#]
    int Get(string URL);

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

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

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

[PHP]
    integer Get(string $URL)

[Java]
    int get(String URL);

Parameters

  • URL - specifies 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 'GET' request to server. As a response to this request, server should return the content of resource specified in URL parameter. GET is one of the most usable HTTP requests.

See also:     Delete     Post     Head     Put     Trace     Options    

Discuss this help topic in SecureBlackbox Forum