Click or drag to resize

RequestContextExtensions.GetCookieManagerAsync Method

Version 106.0.290
Gets the cookie manager associated with the IRequestContext. Once the cookie manager storage has been initialized the method will return.

Namespace:  CefSharp
Assembly:  CefSharp (in CefSharp.dll) Version: 106.0.290.0 (106.0.290.0)
Syntax
public static Task<ICookieManager> GetCookieManagerAsync(
	this IRequestContext requestContext
)

Parameters

requestContext
Type: CefSharp.IRequestContext
The IRequestContext instance this method extends.

Return Value

Type: Task<ICookieManager>
returns ICookieManager if the store was successfully loaded otherwise null.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IRequestContext. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Exceptions
ExceptionCondition
ExceptionThrown when an exception error condition occurs.
See Also