IndexedDBClientRequestDataAsync Method  | 
Version 104.4.240 
            Requests data from object store or index.
            
 
    Namespace: 
   CefSharp.DevTools.IndexedDB
    Assembly:
   CefSharp (in CefSharp.dll) Version: 104.4.240.0 (104.4.240.0)
Syntaxpublic Task<RequestDataResponse> RequestDataAsync(
	string securityOrigin,
	string databaseName,
	string objectStoreName,
	string indexName,
	int skipCount,
	int pageSize,
	KeyRange keyRange = null
)
public:
Task<RequestDataResponse^>^ RequestDataAsync(
	String^ securityOrigin, 
	String^ databaseName, 
	String^ objectStoreName, 
	String^ indexName, 
	int skipCount, 
	int pageSize, 
	KeyRange^ keyRange = nullptr
)
Parameters
- securityOrigin
 - Type: SystemString
Security origin. - 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. - keyRange (Optional)
 - Type: CefSharp.DevTools.IndexedDBKeyRange
Key range. 
Return Value
Type: 
TaskRequestDataResponsereturns System.Threading.Tasks.Task<RequestDataResponse>
See Also