CookieCollection.Remove(Cookie) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Removes the specified cookie from the CookieCollection.
public:
virtual bool Remove(System::Net::Cookie ^ cookie);
public bool Remove (System.Net.Cookie cookie);
abstract member Remove : System.Net.Cookie -> bool
override this.Remove : System.Net.Cookie -> bool
Public Function Remove (cookie As Cookie) As Boolean
Parameters
- cookie
- Cookie
The cookie to remove from the CookieCollection.
Returns
true
if cookie
was successfully removed from the CookieCollection; otherwise, false
. This method also returns false
if item is not found in the original collection.
Implements
Remarks
The cookie
is determined to be part of the collection if Name, Domain and Path match.
The comparison for Name and Domain is case-insensitive.
The comparison for Path is case-sensitive.