NodeFileOperationsExtensions.ListFromTaskAsync Method (INodeFileOperations, String, String, NodeFileListParameters)
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
public static Task<NodeFileListResponse> ListFromTaskAsync(
this INodeFileOperations operations,
string jobId,
string taskId,
NodeFileListParameters parameters
)
public:
[ExtensionAttribute]
static Task<NodeFileListResponse^>^ ListFromTaskAsync(
INodeFileOperations^ operations,
String^ jobId,
String^ taskId,
NodeFileListParameters^ parameters
)
static member ListFromTaskAsync :
operations:INodeFileOperations *
jobId:string *
taskId:string *
parameters:NodeFileListParameters -> Task<NodeFileListResponse>
<ExtensionAttribute>
Public Shared Function ListFromTaskAsync (
operations As INodeFileOperations,
jobId As String,
taskId As String,
parameters As NodeFileListParameters
) As Task(Of NodeFileListResponse)
Parameters
operations
Type: Microsoft.Azure.Batch.Protocol.INodeFileOperationsReference to the Microsoft.Azure.Batch.Protocol.INodeFileOperations.
jobId
Type: System.StringRequired. The id of the job that contains the task.
taskId
Type: System.StringRequired. The id of the task whose files you want to list.
parameters
Type: Microsoft.Azure.Batch.Protocol.Models.NodeFileListParametersRequired. The parameters for the request.
Return Value
Type: System.Threading.Tasks.Task<NodeFileListResponse>
Response to a NodeFileOperations.ListFromComputeNode or NodeFileOperations.ListFromTask request.
See Also
NodeFileOperationsExtensions Class
Microsoft.Azure.Batch.Protocol Namespace
Return to top