IndexedDBClientRequestDataAsync Method |
Version 109.1.110
Requests data from object store or index.
Namespace:
CefSharp.DevTools.IndexedDB
Assembly:
CefSharp (in CefSharp.dll) Version: 109.1.110.0 (109.1.110.0)
Syntax public Task<RequestDataResponse> RequestDataAsync(
string databaseName,
string objectStoreName,
string indexName,
int skipCount,
int pageSize,
string securityOrigin = null,
string storageKey = null,
KeyRange keyRange = null
)
public:
Task<RequestDataResponse^>^ RequestDataAsync(
String^ databaseName,
String^ objectStoreName,
String^ indexName,
int skipCount,
int pageSize,
String^ securityOrigin = nullptr,
String^ storageKey = nullptr,
KeyRange^ keyRange = nullptr
)
Parameters
- databaseName
- Type: SystemString
Database name. - objectStoreName
- Type: SystemString
Object store name. - indexName
- Type: SystemString
Index name, empty string for object store data requests. - skipCount
- Type: SystemInt32
Number of records to skip. - pageSize
- Type: SystemInt32
Number of records to fetch. - securityOrigin (Optional)
- Type: SystemString
At least and at most one of securityOrigin, storageKey must be specified.Security origin. - storageKey (Optional)
- Type: SystemString
Storage key. - keyRange (Optional)
- Type: CefSharp.DevTools.IndexedDBKeyRange
Key range.
Return Value
Type:
TaskRequestDataResponsereturns System.Threading.Tasks.Task<RequestDataResponse>
See Also