Application.GetCookie(Uri) Method

Definition

Retrieves a cookie for the location specified by a Uri.

public:
 static System::String ^ GetCookie(Uri ^ uri);
public static string GetCookie (Uri uri);
static member GetCookie : Uri -> string
Public Shared Function GetCookie (uri As Uri) As String

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

See also