Click or drag to resize

IndexedDBClientRequestDataAsync Method

Version 130.1.90
Requests data from object store or index.

Namespace: CefSharp.DevTools.IndexedDB
Assembly: CefSharp.Core (in CefSharp.Core.dll) Version: 129.0.110.0
Syntax
public Task<RequestDataResponse> RequestDataAsync(
	string databaseName,
	string objectStoreName,
	string indexName,
	int skipCount,
	int pageSize,
	string securityOrigin = null,
	string storageKey = null,
	StorageBucket storageBucket = null,
	KeyRange keyRange = null
)

Parameters

databaseName  String
Database name.
objectStoreName  String
Object store name.
indexName  String
Index name, empty string for object store data requests.
skipCount  Int32
Number of records to skip.
pageSize  Int32
Number of records to fetch.
securityOrigin  String  (Optional)
At least and at most one of securityOrigin, storageKey, or storageBucket must be specified.Security origin.
storageKey  String  (Optional)
Storage key.
storageBucket  StorageBucket  (Optional)
Storage bucket. If not specified, it uses the default bucket.
keyRange  KeyRange  (Optional)
Key range.

Return Value

TaskRequestDataResponse
returns System.Threading.Tasks.Task<RequestDataResponse>
See Also