| ICookieStore Methods | 
The ICookieStore type exposes the following members.
 Methods
Methods| Name | Description | |
|---|---|---|
|  | Delete | 
                Deletes one specific cookie. The cookie instance can be received from
                a list of cookies returned from the GetAllCookies(String) method.
             | 
|  | DeleteAllCookies | 
                Deletes all of the cookies including session, secure or HTTP only cookies.
             | 
|  | Flush | 
                Use this method to save all the changes you apply to this cookie storage.
                By default all the changes to the cookie store are made in memory, so when
                you restart the application you will not see the changes you made if you
                don't invoke this method on application exit. You can invoke this method
                after every change you made to cookie storage.
             | 
|  | GetAllCookies | 
                Returns all the cookies for given url including HTTP only cookies.
             | 
|  | SetCookie | 
                Sets a session cookie given explicit user-provided cookie attributes.
             | 
 See Also
See Also