Click or drag to resize

IndexedDBClientGetMetadataAsync Method

Version 118.6.80
Gets metadata of an object store.

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

Parameters

databaseName
Type: SystemString
Database name.
objectStoreName
Type: SystemString
Object store name.
securityOrigin (Optional)
Type: SystemString
At least and at most one of securityOrigin, storageKey, or storageBucket must be specified.Security origin.
storageKey (Optional)
Type: SystemString
Storage key.
storageBucket (Optional)
Type: CefSharp.DevTools.StorageStorageBucket
Storage bucket. If not specified, it uses the default bucket.

Return Value

Type: TaskGetMetadataResponse
returns System.Threading.Tasks.Task<GetMetadataResponse>
See Also