Click or drag to resize

IndexedDBClientClearObjectStoreAsync Method

Version 130.1.90
Clears all entries from an object store.

Namespace: CefSharp.DevTools.IndexedDB
Assembly: CefSharp.Core (in CefSharp.Core.dll) Version: 129.0.110.0
Syntax
public Task<DevToolsMethodResponse> ClearObjectStoreAsync(
	string databaseName,
	string objectStoreName,
	string securityOrigin = null,
	string storageKey = null,
	StorageBucket storageBucket = null
)

Parameters

databaseName  String
Database name.
objectStoreName  String
Object store name.
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

TaskDevToolsMethodResponse
returns System.Threading.Tasks.Task<DevToolsMethodResponse>
See Also