INodeFileOperations.GetNodeFilePropertiesFromComputeNodeAsync Method (String, String, String, NodeFileGetPropertiesParameters, CancellationToken)

 

Gets the properties of the specified compute node file.

Namespace:   Microsoft.Azure.Batch.Protocol
Assembly:  Microsoft.Azure.Batch (in Microsoft.Azure.Batch.dll)

Syntax

Task<NodeFileGetPropertiesResponse> GetNodeFilePropertiesFromComputeNodeAsync(
    string poolId,
    string nodeId,
    string fileName,
    NodeFileGetPropertiesParameters parameters,
    CancellationToken cancellationToken
)
Task<NodeFileGetPropertiesResponse^>^ GetNodeFilePropertiesFromComputeNodeAsync(
    String^ poolId,
    String^ nodeId,
    String^ fileName,
    NodeFileGetPropertiesParameters^ parameters,
    CancellationToken cancellationToken
)
abstract GetNodeFilePropertiesFromComputeNodeAsync : 
        poolId:string *
        nodeId:string *
        fileName:string *
        parameters:NodeFileGetPropertiesParameters *
        cancellationToken:CancellationToken -> Task<NodeFileGetPropertiesResponse>
Function GetNodeFilePropertiesFromComputeNodeAsync (
    poolId As String,
    nodeId As String,
    fileName As String,
    parameters As NodeFileGetPropertiesParameters,
    cancellationToken As CancellationToken
) As Task(Of NodeFileGetPropertiesResponse)

Parameters

  • poolId
    Type: System.String

    The id of the pool that contains the compute node.

  • nodeId
    Type: System.String

    The id of the compute node that contains the file.

  • fileName
    Type: System.String

    The path to the compute node file that you want to get the properties of.

Return Value

Type: System.Threading.Tasks.Task<NodeFileGetPropertiesResponse>

Response to a NodeFileOperations.GetNodeFilePropertiesFromComputeNode or NodeFileOperations.GetNodeFilePropertiesFromTask request.

See Also

INodeFileOperations Interface
Microsoft.Azure.Batch.Protocol Namespace

Return to top