Click or drag to resize

StorageClientSetSharedStorageEntryAsync Method

Version 130.1.90
Sets entry with `key` and `value` for a given origin's shared storage.

Namespace: CefSharp.DevTools.Storage
Assembly: CefSharp.Core (in CefSharp.Core.dll) Version: 129.0.110.0
Syntax
public Task<DevToolsMethodResponse> SetSharedStorageEntryAsync(
	string ownerOrigin,
	string key,
	string value,
	bool? ignoreIfPresent = null
)

Parameters

ownerOrigin  String
ownerOrigin
key  String
key
value  String
value
ignoreIfPresent  NullableBoolean  (Optional)
If `ignoreIfPresent` is included and true, then only sets the entry if`key` doesn't already exist.

Return Value

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