NodeFileOperationsExtensions.GetNodeFilePropertiesFromTask Method (INodeFileOperations, String, String, String, NodeFileGetPropertiesParameters)
Gets the properties of the specified task file.
Namespace: Microsoft.Azure.Batch.Protocol
Assembly: Microsoft.Azure.Batch (in Microsoft.Azure.Batch.dll)
Syntax
public static NodeFileGetPropertiesResponse GetNodeFilePropertiesFromTask(
this INodeFileOperations operations,
string jobId,
string taskId,
string fileName,
NodeFileGetPropertiesParameters parameters
)
public:
[ExtensionAttribute]
static NodeFileGetPropertiesResponse^ GetNodeFilePropertiesFromTask(
INodeFileOperations^ operations,
String^ jobId,
String^ taskId,
String^ fileName,
NodeFileGetPropertiesParameters^ parameters
)
static member GetNodeFilePropertiesFromTask :
operations:INodeFileOperations *
jobId:string *
taskId:string *
fileName:string *
parameters:NodeFileGetPropertiesParameters -> NodeFileGetPropertiesResponse
<ExtensionAttribute>
Public Shared Function GetNodeFilePropertiesFromTask (
operations As INodeFileOperations,
jobId As String,
taskId As String,
fileName As String,
parameters As NodeFileGetPropertiesParameters
) As NodeFileGetPropertiesResponse
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 file you want to get the properties of.
fileName
Type: System.StringRequired. The path to the task file that you want to get the properties of.
parameters
Type: Microsoft.Azure.Batch.Protocol.Models.NodeFileGetPropertiesParametersRequired. The parameters for the request.
Return Value
Type: Microsoft.Azure.Batch.Protocol.Models.NodeFileGetPropertiesResponse
Response to a NodeFileOperations.GetNodeFilePropertiesFromComputeNode or NodeFileOperations.GetNodeFilePropertiesFromTask request.
See Also
NodeFileOperationsExtensions Class
Microsoft.Azure.Batch.Protocol Namespace
Return to top