ApplicationCache class - dart:html library (original) (raw)
ApplicationCache is accessed via Window.applicationCache.
Inheritance
- Object
- EventTarget
- ApplicationCache
Annotations
- @SupportedBrowser(SupportedBrowser.CHROME)
- @SupportedBrowser(SupportedBrowser.FIREFOX)
- @SupportedBrowser(SupportedBrowser.IE, '10')
- @SupportedBrowser(SupportedBrowser.OPERA)
- @SupportedBrowser(SupportedBrowser.SAFARI)
- @Unstable()
- @Native("ApplicationCache,DOMApplicationCache,OfflineResourceList")
Properties
The hash code for this object.
no setterinherited
This is an ease-of-use accessor for event streams which should only be used when an explicit accessor is not available.
no setterinherited
Stream of cached
events handled by this ApplicationCache.
no setter
Stream of checking
events handled by this ApplicationCache.
no setter
Stream of downloading
events handled by this ApplicationCache.
no setter
Stream of error
events handled by this ApplicationCache.
no setter
Stream of noupdate
events handled by this ApplicationCache.
no setter
Stream of obsolete
events handled by this ApplicationCache.
no setter
onProgress → Stream<ProgressEvent>
Stream of progress
events handled by this ApplicationCache.
no setter
Stream of updateready
events handled by this ApplicationCache.
no setter
A representation of the runtime type of the object.
no setterinherited
no setter
Methods
abort()→ void
addEventListener(String type, EventListener? listener, [bool? useCapture])→ void
inherited
dispatchEvent(Event event)→ bool
inherited
noSuchMethod(Invocation invocation)→ dynamic
Invoked when a nonexistent method or property is accessed.
inherited
removeEventListener(String type, EventListener? listener, [bool? useCapture])→ void
inherited
swapCache()→ void
A string representation of this object.
inherited
update()→ void
Operators
operator ==(Object other)→ bool
The equality operator.
inherited
Static Properties
Checks if this type is supported on the current platform.
no setter
Constants
cachedEvent → const EventStreamProvider<Event>
Static factory designed to expose cached
events to event handlers that are not necessarily instances of ApplicationCache.
checkingEvent → const EventStreamProvider<Event>
Static factory designed to expose checking
events to event handlers that are not necessarily instances of ApplicationCache.
DOWNLOADING → const int
downloadingEvent → const EventStreamProvider<Event>
Static factory designed to expose downloading
events to event handlers that are not necessarily instances of ApplicationCache.
errorEvent → const EventStreamProvider<Event>
Static factory designed to expose error
events to event handlers that are not necessarily instances of ApplicationCache.
noUpdateEvent → const EventStreamProvider<Event>
Static factory designed to expose noupdate
events to event handlers that are not necessarily instances of ApplicationCache.
obsoleteEvent → const EventStreamProvider<Event>
Static factory designed to expose obsolete
events to event handlers that are not necessarily instances of ApplicationCache.
progressEvent → const EventStreamProvider<ProgressEvent>
Static factory designed to expose progress
events to event handlers that are not necessarily instances of ApplicationCache.
UPDATEREADY → const int
updateReadyEvent → const EventStreamProvider<Event>
Static factory designed to expose updateready
events to event handlers that are not necessarily instances of ApplicationCache.