FRAMES NO FRAMES | |||||||
| |||||||
SUMMARY: IMPORT | CONSTANT | MEMBER | ACTION | DETAIL: IMPORT | CONSTANT | MEMBER | ACTION |
Member summary | |
---|---|
string | method
The HTTP method to use for the request. |
string | path
The request URI. |
any | payload
The request payload. |
com.softwareag.connectivity.httpclient.HttpOptions | options
Optional HTTP options to set headers, cookies and query parameters. |
Action summary | |
---|---|
void |
execute(action<com.softwareag.connectivity.httpclient.Response> responseHandler)
Send the request to an appropriate HTTP client transport chain instance and execute the callback on the response which could be either success or failure. |
void |
executeWithSeparateCallbacks(action<com.softwareag.connectivity.httpclient.Response> success, action<com.softwareag.connectivity.httpclient.Response> failure)
Send the request to an appropriate HTTP client transport chain instance and execute the appropriate callback on the response. |
string |
getCookie(string name)
Returns an HTTP cookie set in the request. This is equivalent to calling options.cookies[name]. |
string |
getHeader(string name)
Returns an HTTP header set in this request. This is equivalent to calling options.headers[name]. |
string |
getQueryParameter(string name)
Returns an HTTP query parameter set in this request. This is equivalent to calling options.queryParams[name]. |
void |
setCookie(string name, string value)
Set an HTTP cookie in the request. This is equivalent to options.cookies[name] := value. |
void |
setHeader(string name, string value)
Set an HTTP header. This is equivalent to options.headers[name] := value. |
void |
setQueryParameter(string name, string value)
Set an HTTP query parameter which gets encoded as part of the path in the request URI. This is equivalent to options.queryParams[name] := value. |
Member detail |
---|
string methodThe HTTP method to use for the request.
com.softwareag.connectivity.httpclient.HttpOptions optionsOptional HTTP options to set headers, cookies and query parameters.
string pathThe request URI.
any payloadThe request payload.
Action detail |
---|
void execute(action<com.softwareag.connectivity.httpclient.Response> responseHandler)Send the request to an appropriate HTTP client transport chain instance and execute the callback on the response which could be either success or failure.
void executeWithSeparateCallbacks(action<com.softwareag.connectivity.httpclient.Response> success, action<com.softwareag.connectivity.httpclient.Response> failure)Send the request to an appropriate HTTP client transport chain instance and execute the appropriate callback on the response.
string getCookie(string name)Returns an HTTP cookie set in the request. This is equivalent to calling options.cookies[name].
string getHeader(string name)Returns an HTTP header set in this request. This is equivalent to calling options.headers[name].
string getQueryParameter(string name)Returns an HTTP query parameter set in this request. This is equivalent to calling options.queryParams[name].
void setCookie(string name, string value)Set an HTTP cookie in the request. This is equivalent to options.cookies[name] := value.
void setHeader(string name, string value)Set an HTTP header. This is equivalent to options.headers[name] := value.
void setQueryParameter(string name, string value)Set an HTTP query parameter which gets encoded as part of the path in the request URI. This is equivalent to options.queryParams[name] := value.
FRAMES NO FRAMES | |||||||
| |||||||
SUMMARY: IMPORT | CONSTANT | MEMBER | ACTION | DETAIL: IMPORT | CONSTANT | MEMBER | ACTION |