CookieContainer.GetCookies(Uri) Method

Definition

Gets a CookieCollection that contains the Cookie instances that are associated with a specific URI.

public:
 System::Net::CookieCollection ^ GetCookies(Uri ^ uri);
public System.Net.CookieCollection GetCookies (Uri uri);
member this.GetCookies : Uri -> System.Net.CookieCollection
Public Function GetCookies (uri As Uri) As CookieCollection

Parameters

uri
Uri

The URI of the Cookie instances desired.

Returns

A CookieCollection that contains the Cookie instances that are associated with a specific URI.

Exceptions

uri is null.

Remarks

A new instance of a CookieCollection is created. Then the Cookie instances in the internal collection that are associated with the specified URI are read out and added to the new CookieCollection.

Applies to

See also