FileSystemOperationsExtensions.InternalBeginOpen Method (IFileSystemOperations, String, String, FileOpenParameters)

 

Gets the data associated with the file handle requested. DO NOT USE DIRECTLY in C# (in Node.js, please ONLY call this API to read/open the contents of a file. DO NOT call Open). Call BeginOpen and BeginOpenAsync 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 InternalBeginOpen(
    this IFileSystemOperations operations,
    string filePath,
    string accountName,
    FileOpenParameters parameters
)
public:
[ExtensionAttribute]
static FileCreateOpenAndAppendResponse^ InternalBeginOpen(
    IFileSystemOperations^ operations,
    String^ filePath,
    String^ accountName,
    FileOpenParameters^ parameters
)
static member InternalBeginOpen : 
        operations:IFileSystemOperations *
        filePath:string *
        accountName:string *
        parameters:FileOpenParameters -> FileCreateOpenAndAppendResponse
<ExtensionAttribute>
Public Shared Function InternalBeginOpen (
    operations As IFileSystemOperations,
    filePath As String,
    accountName As String,
    parameters As FileOpenParameters
) As FileCreateOpenAndAppendResponse

Parameters

  • filePath
    Type: System.String

    Required. The path to the file to open.

  • accountName
    Type: System.String

    Required. The name of the account to use

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