CookieContainer.GetCookies(Uri) 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.
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
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.