INodeFileOperations.ListFromTaskAsync Method (String, String, NodeFileListParameters, CancellationToken)
Lists the files in a task's directory on its compute node.
Namespace: Microsoft.Azure.Batch.Protocol
Assembly: Microsoft.Azure.Batch (in Microsoft.Azure.Batch.dll)
Syntax
Task<NodeFileListResponse> ListFromTaskAsync(
string jobId,
string taskId,
NodeFileListParameters parameters,
CancellationToken cancellationToken
)
Task<NodeFileListResponse^>^ ListFromTaskAsync(
String^ jobId,
String^ taskId,
NodeFileListParameters^ parameters,
CancellationToken cancellationToken
)
abstract ListFromTaskAsync :
jobId:string *
taskId:string *
parameters:NodeFileListParameters *
cancellationToken:CancellationToken -> Task<NodeFileListResponse>
Function ListFromTaskAsync (
jobId As String,
taskId As String,
parameters As NodeFileListParameters,
cancellationToken As CancellationToken
) As Task(Of NodeFileListResponse)
Parameters
jobId
Type: System.StringThe id of the job that contains the task.
taskId
Type: System.StringThe id of the task whose files you want to list.
parameters
Type: Microsoft.Azure.Batch.Protocol.Models.NodeFileListParametersThe parameters for the request.
cancellationToken
Type: System.Threading.CancellationTokenCancellation token.
Return Value
Type: System.Threading.Tasks.Task<NodeFileListResponse>
Response to a NodeFileOperations.ListFromComputeNode or NodeFileOperations.ListFromTask request.
See Also
INodeFileOperations Interface
Microsoft.Azure.Batch.Protocol Namespace
Return to top