Table of Contents
  • Getting Started
  • EO.Pdf
  • EO.Web
  • EO.WebBrowser
  • EO.Wpf
  • Common Topics
  • Reference
    • .NET API Reference
      • EO.Base
      • EO.Base.UI
      • EO.Extensions
      • EO.Pdf
      • EO.Pdf.Acm
      • EO.Pdf.Contents
      • EO.Pdf.Drawing
      • EO.Pdf.Mvc
      • EO.Web
      • EO.WebBrowser
      • EO.WebBrowser.DOM
      • EO.WebEngine
      • EO.WinForm
      • EO.Wpf
      • EO.Wpf.Gauge
      • EO.Wpf.Gauge.Shapes
      • EO.Wpf.Primitives
      • EO.Wpf.Themes.Aero
      • EO.Wpf.Themes.Classic
      • EO.Wpf.Themes.Luna
      • EO.Wpf.Themes.Metro
      • EO.Wpf.Themes.Royale
    • JavaScript API Reference
CookieManager Class

Provides interface to manage cookies.

Namespace: EO.WebEngine
Assembly: EO.WebEngine (in EO.WebEngine.dll)

Inheritance Hierarchy

System.Object
   EO.WebEngine.CookieManager

Syntax
 public sealed class CookieManager
Remarks

The following code demonstrates how to set a new cookie for "www.google.com":

//Create a new cookie
EO.WebEngine.Cookie cookie = new EO.WebEngine.Cookie("test", "value");

//Add the new cookie for www.google.com
webView.Engine.CookieManager.SetCookie("http://www.google.com", cookie);

The webView variable in the above is a WebView object that has already been created (otherwise its Engine property may not be valid).

See Also