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