| Top |  |  |  |  | 
| WebKitCookieManagerWebKitCookieManager — Defines how to handle cookies in a WebKitWebContext | 
| struct | WebKitCookieManager | 
| enum | WebKitCookiePersistentStorage | 
| enum | WebKitCookieAcceptPolicy | 
The WebKitCookieManager defines how to handle cookies in a
WebKitWebContext. Get it from the context with
webkit_web_context_get_cookie_manager(), and use it to set where to
store cookies, with webkit_cookie_manager_set_persistent_storage(),
to get the list of domains with cookies, with
webkit_cookie_manager_get_domains_with_cookies(), or to set the
acceptance policy, with webkit_cookie_manager_get_accept_policy()
(among other actions).
void webkit_cookie_manager_set_persistent_storage (WebKitCookieManager *cookie_manager,const gchar *filename,WebKitCookiePersistentStorage storage);
Set the filename
 where non-session cookies are stored persistently using
storage
 as the format to read/write the cookies.
Cookies are initially read from filename
 to create an initial set of cookies.
Then, non-session cookies will be written to filename
 when the WebKitCookieManager::changed
signal is emitted.
By default, cookie_manager
 doesn't store the cookies persistenly, so you need to call this
method to keep cookies saved across sessions.
void webkit_cookie_manager_set_accept_policy (WebKitCookieManager *cookie_manager,WebKitCookieAcceptPolicy policy);
Set the cookie acceptance policy of cookie_manager
 as policy
.
void webkit_cookie_manager_get_accept_policy (WebKitCookieManager *cookie_manager,GCancellable *cancellable,GAsyncReadyCallback callback,gpointer user_data);
Asynchronously get the cookie acceptance policy of cookie_manager
.
When the operation is finished, callback
 will be called. You can then call
webkit_cookie_manager_get_accept_policy_finish() to get the result of the operation.
| cookie_manager | ||
| cancellable |  a GCancellable or  | [allow-none] | 
| callback | a GAsyncReadyCallback to call when the request is satisfied. | [scope async] | 
| user_data | the data to pass to callback function. | [closure] | 
WebKitCookieAcceptPolicy webkit_cookie_manager_get_accept_policy_finish (WebKitCookieManager *cookie_manager,GAsyncResult *result,GError **error);
Finish an asynchronous operation started with webkit_cookie_manager_get_accept_policy().
void webkit_cookie_manager_get_domains_with_cookies (WebKitCookieManager *cookie_manager,GCancellable *cancellable,GAsyncReadyCallback callback,gpointer user_data);
Asynchronously get the list of domains for which cookie_manager
 contains cookies.
When the operation is finished, callback
 will be called. You can then call
webkit_cookie_manager_get_domains_with_cookies_finish() to get the result of the operation.
| cookie_manager | ||
| cancellable |  a GCancellable or  | [allow-none] | 
| callback | a GAsyncReadyCallback to call when the request is satisfied. | [scope async] | 
| user_data | the data to pass to callback function. | [closure] | 
gchar ** webkit_cookie_manager_get_domains_with_cookies_finish (WebKitCookieManager *cookie_manager,GAsyncResult *result,GError **error);
Finish an asynchronous operation started with webkit_cookie_manager_get_domains_with_cookies().
The return value is a NULL terminated list of strings which should
be released with g_strfreev().
void webkit_cookie_manager_delete_cookies_for_domain (WebKitCookieManager *cookie_manager,const gchar *domain);
Remove all cookies of cookie_manager
 for the given domain
.
void
webkit_cookie_manager_delete_all_cookies
                               (WebKitCookieManager *cookie_manager);
Delete all cookies of cookie_manager
“changed” signalvoid user_function (WebKitCookieManager *cookie_manager, gpointer user_data)
This signal is emitted when cookies are added, removed or modified.
Flags: Run Last