Application.GetCookie(Uri) Method

Definition

Retrieves a cookie for the location specified by a Uri.

C#
public static string GetCookie(Uri uri);

Parameters

uri
Uri

The Uri that specifies the location for which a cookie was created.

Returns

A String value, if the cookie exists; otherwise, a Win32Exception is thrown.

Exceptions

A Win32 error is raised by the InternetGetCookie function (called by GetCookie(Uri)) if a problem occurs when attempting to retrieve the specified cookie.

Remarks

GetCookie retrieves a cookie for the specified Uri. If the cookie can't be retrieved, a Win32Exception is thrown. You need to write the code to parse the cookie string into a list of name/value pairs.

For an overview of cookies in WPF, see Navigation Overview.

Applies to

Produkt Verzie
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

See also