IndexedDBClientRequestDataAsync Method |
Version 130.1.90
Requests data from object store or index.
Namespace: CefSharp.DevTools.IndexedDBAssembly: 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
)
public:
Task<RequestDataResponse^>^ RequestDataAsync(
String^ databaseName,
String^ objectStoreName,
String^ indexName,
int skipCount,
int pageSize,
String^ securityOrigin = nullptr,
String^ storageKey = nullptr,
StorageBucket^ storageBucket = nullptr,
KeyRange^ keyRange = nullptr
)
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
TaskRequestDataResponsereturns System.Threading.Tasks.Task<RequestDataResponse>
See Also