Top |
WebKitURIRequest * | webkit_uri_request_new () |
const gchar * | webkit_uri_request_get_uri () |
void | webkit_uri_request_set_uri () |
const gchar * | webkit_uri_request_get_http_method () |
SoupMessageHeaders * | webkit_uri_request_get_http_headers () |
A WebKitURIRequest can be created with a URI using the
webkit_uri_request_new()
method, and you can get the URI of an
existing request with the webkit_uri_request_get_uri()
one.
WebKitURIRequest *
webkit_uri_request_new (const gchar *uri
);
Creates a new WebKitURIRequest for the given URI.
void webkit_uri_request_set_uri (WebKitURIRequest *request
,const gchar *uri
);
Set the URI of request
const gchar *
webkit_uri_request_get_http_method (WebKitURIRequest *request
);
Get the HTTP method of the WebKitURIRequest.
Since: 2.12
SoupMessageHeaders *
webkit_uri_request_get_http_headers (WebKitURIRequest *request
);
Get the HTTP headers of a WebKitURIRequest as a SoupMessageHeaders.
a SoupMessageHeaders with the HTTP headers of request
or NULL
if request
is not an HTTP request.
[transfer none]