Click or drag to resize
ICookieVisitor Interface
Version 63.0.0
Interface to implement for visiting cookie values. The methods of this class will always be called on the IO thread. If there are no cookies then Visit will never be called, you must implement Dispose to handle this scenario.

Namespace: CefSharp
Assembly: CefSharp (in CefSharp.dll) Version: 63.0.0.0 (63.0.0.0)
Syntax
public interface ICookieVisitor : IDisposable

The ICookieVisitor type exposes the following members.

Methods
  NameDescription
Public methodDispose
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
(Inherited from IDisposable.)
Public methodVisit
Method that will be called once for each cookie. This method may never be called if no cookies are found.
Top
See Also