IStorage Interface

Definition

Defines the interface for a storage layer.

public interface IStorage
type IStorage = interface
Public Interface IStorage
Derived

Methods

DeleteAsync(String[], CancellationToken)

Deletes storage items from storage.

ReadAsync(String[], CancellationToken)

Reads storage items from storage.

WriteAsync(IDictionary<String,Object>, CancellationToken)

Writes storage items to storage.

Extension Methods

ReadAsync<TStoreItem>(IStorage, String[], CancellationToken)

Gets and strongly types a collection of IStoreItem objects from state storage.

Applies to