Discuss this help topic in SecureBlackbox Forum

TElHTTPSClient.Trace

TElHTTPSClient     See also     


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


Sends the TRACE request to server.

Declaration

[C#]
    int Trace(string URL);

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

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

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

[PHP]
    integer Trace(string $URL)

[Java]
    int trace(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 the TRACE request to server.

See also:     Delete     Post     Get     Put     Options     Head    

Discuss this help topic in SecureBlackbox Forum