Click or drag to resize

RequestContextExtensionsGetCookieManagerAsync Method

Version 102.0.100
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: 102.0.100.0 (102.0.100.0)
Syntax
public static Task<ICookieManager> GetCookieManagerAsync(
	this IRequestContext requestContext
)

Parameters

requestContext
Type: CefSharpIRequestContext
The IRequestContext instance this method extends.

Return Value

Type: TaskICookieManager
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