IMenuCommandInvokeAsync Method |
IT Hit User File System
Handles menu call.
Namespace:
ITHit.FileSystem
Assembly:
ITHit.FileSystem (in ITHit.FileSystem.dll) Version: 8.3.27213.0
Syntax Task InvokeAsync(
IEnumerable<string> filesPath,
IEnumerable<byte[]> remoteStorageItemIds = null,
CancellationToken cancellationToken = null
)
Function InvokeAsync (
filesPath As IEnumerable(Of String),
Optional remoteStorageItemIds As IEnumerable(Of Byte()) = Nothing,
Optional cancellationToken As CancellationToken = Nothing
) As Task
Task^ InvokeAsync(
IEnumerable<String^>^ filesPath,
IEnumerable<array<unsigned char>^>^ remoteStorageItemIds = nullptr,
CancellationToken cancellationToken = nullptr
)
abstract InvokeAsync :
filesPath : IEnumerable<string> *
?remoteStorageItemIds : IEnumerable<byte[]> *
?cancellationToken : CancellationToken
(* Defaults:
let _remoteStorageItemIds = defaultArg remoteStorageItemIds null
let _cancellationToken = defaultArg cancellationToken null
*)
-> Task
Parameters
- filesPath
- Type: System.Collections.GenericIEnumerableString
List of selected items. - remoteStorageItemIds (Optional)
- Type: System.Collections.GenericIEnumerableByte
List of selected remote storage item ids. - cancellationToken (Optional)
- Type: System.ThreadingCancellationToken
Return Value
Type:
TaskA task object that can be awaited.
See Also