Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Method: HResponse Get(string, params HArg[])

Declaration

public HResponse Get(
    string url,
    params HArg[] args
)

Summary

Performs a GET request to the specified URL and with the specified query parameters.

Parameters

stringurl The URL of the request. If the URL does not begin with http:// or https://, it is automatically prepended with HClient.RootUrl.
HArg[]args Query parameters to add to the end of the URL in the usual ?k1=v1&k2=v2&... format. Null values are allowed and ignored.

Returns

The response received from the server.