Packagecom.myflashlab.air.extensions.richWebView.ios
Classpublic class WebsiteDataStore
InheritanceWebsiteDataStore Inheritance Object

A WebsiteDataStore represents various types of data that a website might make use of. This includes cookies, disk and memory caches, and persistent data such as WebSQL, IndexedDB databases, and local storage.



Public Properties
 PropertyDefined By
  isPersistent : Boolean
[read-only] Whether the data store is persistent or not.
WebsiteDataStore
Public Constants
 ConstantDefined By
  DEFAULT : int = 0
[static] The default data store
WebsiteDataStore
  NONPERSISTENT : int = 1
[static] a new non-persistent data store.
WebsiteDataStore
Property Detail
isPersistentproperty
isPersistent:Boolean  [read-only]

Whether the data store is persistent or not.


Implementation
    public function get isPersistent():Boolean
Constant Detail
DEFAULTConstant
public static const DEFAULT:int = 0

The default data store

NONPERSISTENTConstant 
public static const NONPERSISTENT:int = 1

a new non-persistent data store. If a WKWebView is associated with a non-persistent data store, no data will be written to the file system. This is useful for implementing "private browsing" in a web view.