Share via


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.

ReadAsync<TStoreItem>(String[], CancellationToken)

Reads storage items from storage.

WriteAsync(IDictionary<String,Object>, CancellationToken)

Writes storage items to storage.

WriteAsync<TStoreItem>(IDictionary<String,TStoreItem>, CancellationToken)

Writes storage items to storage.

Applies to