Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

The cookiestore object retrieves a list of cookies from the containing browser (which implies that this class is only available for code running inside a browser instance, not from roNodeJs).


cookiestore IDL
interface Cookie {
    attribute String domain;
    attribute String path;
    attribute String name;
    attribute String value;
};
 
interface cookiestore {
    Array<Cookie> getCookies();
};

Object Creation


To get cookies from the containing browser:

    Array<Cookie> getCookies()
  • [string] domain: 
  • [string] path:
  • [string] name:
  • [string] value:





  • No labels