WARNING: Most of this content (with the exception of the Mozilla 1.9 XPCOM reference) is very old, and can be expected to be out of date and possibly obsolete. For better XUL documentation, please visit the XUL hub at the Mozilla Developer Center.

nsICookieService

IID:2aaa897a-293c-4d2b-a657-8c9b7136996d
Inherits From:nsISupports

Provides methods for setting and getting cookies in the context of a page load. See nsICookieManager for methods to manipulate the cookie database directly. This separation of interface is mainly historical.

This service broadcasts the following notifications when the cookie list is changed, or a cookie is rejected:

Topic : "cookie-changed" broadcast whenever the cookie list changes in some way. there are four possible data strings for this notification; one notification will be broadcast for each change, and will involve a single cookie. subject: an nsICookie2 interface pointer representing the cookie object that changed. data : "deleted" a cookie was deleted. the subject is the deleted cookie. "added" a cookie was added. the subject is the added cookie. "changed" a cookie was changed. the subject is the new cookie. "cleared" the entire cookie list was cleared. the subject is null.

Topic : "cookie-rejected" broadcast whenever a cookie was rejected from being set as a result of user prefs. subject: an nsIURI interface pointer representing the URI that attempted to set the cookie. data : none.

This interface is intended to be used as a service. To create an object implementing this interface:

var obj = Components.classes["@mozilla.org/cookieService;1"].
            getService(Components.interfaces.nsICookieService);

This interface is implemented by the following components:


Methods

char* getCookieString ( nsIURI URI , nsIChannel channel ) char* getCookieStringFromHttp ( nsIURI URI , nsIURI firstURI , nsIChannel channel ) void setCookieString ( nsIURI URI , nsIPrompt prompt , char* cookie , nsIChannel channel ) void setCookieStringFromHttp ( nsIURI URI , nsIURI firstURI , nsIPrompt prompt , char* cookie , char* serverTime , nsIChannel channel )

char* getCookieString ( nsIURI URI , nsIChannel channel )

Arguments:
URI
channel

char* getCookieStringFromHttp ( nsIURI URI , nsIURI firstURI , nsIChannel channel )

Arguments:
URI
firstURI
channel

void setCookieString ( nsIURI URI , nsIPrompt prompt , char* cookie , nsIChannel channel )

Arguments:
URI
prompt
cookie
channel

void setCookieStringFromHttp ( nsIURI URI , nsIURI firstURI , nsIPrompt prompt , char* cookie , char* serverTime , nsIChannel channel )

Arguments:
URI
firstURI
prompt
cookie
serverTime
channel

Reference documentation is generated from Mozilla's source.