IDBRequest
Overview
The request object does not initially contain any information about the result of the operation, but once information becomes available, an event is fired on the request, and the information becomes available through the properties of the IDBRequest instance.
Location
- Reference: Island.fx
- Namespace: RemObjects.Elements.WebAssembly.DOM
- Platforms: WebAssembly
Properties
error
property error: DOMException read;
DOMException error { get; }
var error: DOMException { get{} }
DOMException error { __get; }
ReadOnly Property error() As DOMException
readyState
property readyState: dynamic read;
dynamic readyState { get; }
var readyState: dynamic { get{} }
dynamic readyState { __get; }
ReadOnly Property readyState() As dynamic
result
property result: dynamic read;
dynamic result { get; }
var result: dynamic { get{} }
dynamic result { __get; }
ReadOnly Property result() As dynamic
transaction
property transaction: IDBTransaction read;
IDBTransaction transaction { get; }
var transaction: IDBTransaction { get{} }
IDBTransaction transaction { __get; }
ReadOnly Property transaction() As IDBTransaction