CefCookieVisitor Visit Method Xilium.CefGlue

[This is preliminary documentation and is subject to change.]

Method that will be called once for each cookie. |count| is the 0-based index for the current cookie. |total| is the total number of cookies. Set |deleteCookie| to true to delete the cookie currently being visited. Return false to stop visiting cookies. This method may never be called if no cookies are found.

Namespace: Xilium.CefGlue
Assembly: Xilium.CefGlue (in Xilium.CefGlue.dll) Version: 3.2272.2035.0 (3.2272.2035.0)
Syntax

protected abstract bool Visit(
	CefCookie cookie,
	int count,
	int total,
	out bool delete
)

Parameters

cookie
Type: Xilium.CefGlue CefCookie

[Missing <param name="cookie"/> documentation for "M:Xilium.CefGlue.CefCookieVisitor.Visit(Xilium.CefGlue.CefCookie,System.Int32,System.Int32,System.Boolean@)"]

count
Type: OnlineSystem Int32

[Missing <param name="count"/> documentation for "M:Xilium.CefGlue.CefCookieVisitor.Visit(Xilium.CefGlue.CefCookie,System.Int32,System.Int32,System.Boolean@)"]

total
Type: OnlineSystem Int32

[Missing <param name="total"/> documentation for "M:Xilium.CefGlue.CefCookieVisitor.Visit(Xilium.CefGlue.CefCookie,System.Int32,System.Int32,System.Boolean@)"]

delete
Type: OnlineSystem Boolean 

[Missing <param name="delete"/> documentation for "M:Xilium.CefGlue.CefCookieVisitor.Visit(Xilium.CefGlue.CefCookie,System.Int32,System.Int32,System.Boolean@)"]

Return Value

Type: OnlineBoolean

[Missing <returns> documentation for "M:Xilium.CefGlue.CefCookieVisitor.Visit(Xilium.CefGlue.CefCookie,System.Int32,System.Int32,System.Boolean@)"]

See Also