Share via


PoolOperations.DeleteNodeFile Method (String, String, String, IEnumerable<BatchClientBehavior>)

 

Deletes the specified file from the specified compute node.

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

Syntax

public void DeleteNodeFile(
    string poolId,
    string computeNodeId,
    string fileName,
    IEnumerable<BatchClientBehavior> additionalBehaviors = null
)
public:
void DeleteNodeFile(
    String^ poolId,
    String^ computeNodeId,
    String^ fileName,
    IEnumerable<BatchClientBehavior^>^ additionalBehaviors = null
)
member DeleteNodeFile : 
        poolId:string *
        computeNodeId:string *
        fileName:string *
        additionalBehaviors:IEnumerable<BatchClientBehavior> = null -> unit
Public Sub DeleteNodeFile (
    poolId As String,
    computeNodeId As String,
    fileName As String,
    additionalBehaviors As IEnumerable(Of BatchClientBehavior)
)

Parameters

  • poolId
    Type: System.String

    The id of the pool that contains the compute node.

Remarks

This is a blocking operation. For a non-blocking equivalent, see DeleteNodeFileAsync.

See Also

PoolOperations Class
Microsoft.Azure.Batch Namespace

Return to top