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

  • jobId
    Type: System.String

    Required. The id of the job that contains the task.

  • taskId
    Type: System.String

    Required. The id of the task whose file you want to get the properties of.

  • fileName
    Type: System.String

    Required. The path to the task file that you want to get the properties of.

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