FileSystemOperationsExtensions.InternalBeginAppendAsync Method (IFileSystemOperations, String, String, Nullable<Int64>)

 

Initiates a file append request, resulting in a return of the data node location that will service the request. DO NOT USE DIRECTLY in C# (this should be used directly in Node.js). Call BeginAppend and BeginAppendAsync instead. This ensures proper following of WebHDFS redirects

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

Syntax

public static Task<FileCreateOpenAndAppendResponse> InternalBeginAppendAsync(
    this IFileSystemOperations operations,
    string filePath,
    string accountName,
    Nullable<long> bufferSize
)
public:
[ExtensionAttribute]
static Task<FileCreateOpenAndAppendResponse^>^ InternalBeginAppendAsync(
    IFileSystemOperations^ operations,
    String^ filePath,
    String^ accountName,
    Nullable<long long> bufferSize
)
static member InternalBeginAppendAsync : 
        operations:IFileSystemOperations *
        filePath:string *
        accountName:string *
        bufferSize:Nullable<int64> -> Task<FileCreateOpenAndAppendResponse>
<ExtensionAttribute>
Public Shared Function InternalBeginAppendAsync (
    operations As IFileSystemOperations,
    filePath As String,
    accountName As String,
    bufferSize As Nullable(Of Long)
) As Task(Of FileCreateOpenAndAppendResponse)

Parameters

  • filePath
    Type: System.String

    Required. The path to the file to append to.

  • accountName
    Type: System.String

    Required. The name of the Data Lake Store account to append to the file in

  • bufferSize
    Type: System.Nullable<Int64>

    Required. The optional buffer size to use when appending data

Return Value

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

The response recieved after the BeginOpen, BeginCreate and BeginAppend requests.

See Also

FileSystemOperationsExtensions Class
Microsoft.Azure.Management.DataLake.StoreFileSystem Namespace

Return to top