FileSystemOperationsExtensions.InternalBeginAppend 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 FileCreateOpenAndAppendResponse InternalBeginAppend(
    this IFileSystemOperations operations,
    string filePath,
    string accountName,
    Nullable<long> bufferSize
)
public:
[ExtensionAttribute]
static FileCreateOpenAndAppendResponse^ InternalBeginAppend(
    IFileSystemOperations^ operations,
    String^ filePath,
    String^ accountName,
    Nullable<long long> bufferSize
)
static member InternalBeginAppend : 
        operations:IFileSystemOperations *
        filePath:string *
        accountName:string *
        bufferSize:Nullable<int64> -> FileCreateOpenAndAppendResponse
<ExtensionAttribute>
Public Shared Function InternalBeginAppend (
    operations As IFileSystemOperations,
    filePath As String,
    accountName As String,
    bufferSize As Nullable(Of Long)
) As 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: Microsoft.Azure.Management.DataLake.StoreFileSystem.Models.FileCreateOpenAndAppendResponse

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

See Also

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

Return to top