IT Hit User File System
Called when one or more items needs to be deleted in the remote storage.
Namespace:
ITHit.FileSystem
Assembly:
ITHit.FileSystem (in ITHit.FileSystem.dll) Version: 6.0.16872.0-Beta
SyntaxTask DeleteAsync(
IEnumerable<Operation> operationList,
CancellationToken cancellationToken
)
Function DeleteAsync (
operationList As IEnumerable(Of Operation),
cancellationToken As CancellationToken
) As Task
Task^ DeleteAsync(
IEnumerable<Operation^>^ operationList,
CancellationToken cancellationToken
)
abstract DeleteAsync :
operationList : IEnumerable<Operation> *
cancellationToken : CancellationToken -> Task
Parameters
- operationList
- Type: System.Collections.GenericIEnumerableOperation
List of items to be deleted. - cancellationToken
- Type: System.ThreadingCancellationToken
The token to monitor for cancellation requests.
Return Value
Type:
TaskA task object that can be awaited.
See Also