Dela via


AsyncStorageCreatorDelegate<T> Delegate

Definition

A delegate that creates a storage object, used by the constructor of the storage factory.

public delegate System.Threading.Tasks.Task<T> AsyncStorageCreatorDelegate<T>(string path, bool writable, ITraceLogger logger, CancellationToken cancellationToken);
type AsyncStorageCreatorDelegate<'T> = delegate of string * bool * ITraceLogger * CancellationToken -> Task<'T>
Public Delegate Function AsyncStorageCreatorDelegate(Of T)(path As String, writable As Boolean, logger As ITraceLogger, cancellationToken As CancellationToken) As Task(Of T) 

Type Parameters

T

Parameters

path
String
writable
Boolean
logger
Microsoft.VisualStudio.Settings.Internal.ITraceLogger
cancellationToken
CancellationToken

Return Value

Task<T>

Applies to