ISettingsList.RemoveAsync(String, Object) Method

Definition

Removes a specific element from the list, or does nothing if the element is not found.

public System.Threading.Tasks.Task RemoveAsync (string key, object state = default);
abstract member RemoveAsync : string * obj -> System.Threading.Tasks.Task
Public Function RemoveAsync (key As String, Optional state As Object = Nothing) As Task

Parameters

key
String

The key.

state
Object

A caller-specified object that will be exposed on change events.

Returns

Returns Task.

Exceptions

May be thrown when key is null.

May be thrown when key is empty.

Thrown when the value cannot be persisted to the private store (for example, because the disk is full).

Applies to