Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

Application.GetCookie(Uri) Method

Definition

Namespace:
System.Windows
Assembly:
PresentationFramework.dll

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.

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


Feedback

Was this page helpful?