CookieCollection.Contains(Cookie) Method

Definition

Determines whether the specified cookie is in the CookieCollection.

public:
 virtual bool Contains(System::Net::Cookie ^ cookie);
public bool Contains (System.Net.Cookie cookie);
abstract member Contains : System.Net.Cookie -> bool
override this.Contains : System.Net.Cookie -> bool
Public Function Contains (cookie As Cookie) As Boolean

Parameters

cookie
Cookie

The cookie to locate in the CookieCollection.

Returns

true if the specified cookie is found in the CookieCollection; otherwise, false.

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.

Applies to