IFileSystemOperations.BeginAppendAsync Method (String, String, Nullable<Int32>, CancellationToken)

 

Initiates a file append request, resulting in a return of the data node location that will service the request.

Namespace:   Microsoft.Azure.Management.DataLake.StoreFileSystem
Assembly:  Microsoft.Azure.Management.DataLake.StoreFileSystem (in Microsoft.Azure.Management.DataLake.StoreFileSystem.dll)

Syntax

Task<FileCreateOpenAndAppendResponse> BeginAppendAsync(
    string filePath,
    string accountName,
    Nullable<int> bufferSize,
    CancellationToken cancellationToken
)
Task<FileCreateOpenAndAppendResponse^>^ BeginAppendAsync(
    String^ filePath,
    String^ accountName,
    Nullable<int> bufferSize,
    CancellationToken cancellationToken
)
abstract BeginAppendAsync : 
        filePath:string *
        accountName:string *
        bufferSize:Nullable<int> *
        cancellationToken:CancellationToken -> Task<FileCreateOpenAndAppendResponse>
Function BeginAppendAsync (
    filePath As String,
    accountName As String,
    bufferSize As Nullable(Of Integer),
    cancellationToken As CancellationToken
) As Task(Of FileCreateOpenAndAppendResponse)

Parameters

Return Value

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

The data from the file requested.

See Also

IFileSystemOperations Interface
Microsoft.Azure.Management.DataLake.StoreFileSystem Namespace

Return to top