Click or drag to resize

StorageClientSetSharedStorageEntryAsync Method

Version 118.6.80
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: 118.6.80.0
Syntax
public Task<DevToolsMethodResponse> SetSharedStorageEntryAsync(
	string ownerOrigin,
	string key,
	string value,
	bool? ignoreIfPresent = null
)

Parameters

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

Return Value

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