IndexedDBClientDeleteObjectStoreEntriesAsync Method |
Version 130.1.90
Delete a range of entries from an object store
Namespace: CefSharp.DevTools.IndexedDBAssembly: CefSharp.Core (in CefSharp.Core.dll) Version: 129.0.110.0
Syntax public Task<DevToolsMethodResponse> DeleteObjectStoreEntriesAsync(
string databaseName,
string objectStoreName,
KeyRange keyRange,
string securityOrigin = null,
string storageKey = null,
StorageBucket storageBucket = null
)
public:
Task<DevToolsMethodResponse^>^ DeleteObjectStoreEntriesAsync(
String^ databaseName,
String^ objectStoreName,
KeyRange^ keyRange,
String^ securityOrigin = nullptr,
String^ storageKey = nullptr,
StorageBucket^ storageBucket = nullptr
)
Parameters
- databaseName String
- databaseName
- objectStoreName String
- objectStoreName
- keyRange KeyRange
- Range of entry keys to delete
- 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.
Return Value
TaskDevToolsMethodResponsereturns System.Threading.Tasks.Task<DevToolsMethodResponse>
See Also