mobileFX WebKitX CEF3 ActiveX 4.x
WebKitXCEF3Lib ActiveX Control / WebKitXCEF3 Object / HTTP Method

HTTP Method, such as POST, GET, etc.

The URL you wish to address.

The content-type of the payload you are sending, such as application/json.

The payload sending to the URL.

In This Topic
    HTTP Method
    In This Topic
    Description

    Utility function for performing synchronous HTTP Requests.

    Syntax
    Visual Basic
    Public Sub HTTP( _
       ByVal Method As String, _
       ByVal url As String, _
       ByVal ContentType As String, _
       ByVal Payload As String _
    ) 
    Parameters
    Method

    HTTP Method, such as POST, GET, etc.

    url

    The URL you wish to address.

    ContentType

    The content-type of the payload you are sending, such as application/json.

    Payload

    The payload sending to the URL.

    Remarks

    This is a helper method for synchronous HTTP POST or GET requests, intended for JSON transfers and WebSocket initialization.

    See Also