Discuss this help topic in SecureBlackbox Forum

TElHTTPSClient.Options

TElHTTPSClient     See also     


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


Sends the OPTIONS request to server.

Declaration

[C#]
    int Options(string URL);

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

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

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

[PHP]
    integer Options(string $URL)

[Java]
    int options(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 'OPTIONS' request to server. This request gets information about the server, about the HTTP methods it support and other special information. In this case the Content of response is absent.

See also:     Delete     Post     Get     Put     Trace     Head    

Discuss this help topic in SecureBlackbox Forum