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
operations
Type: Microsoft.Azure.Management.DataLake.StoreFileSystem.IFileSystemOperationsReference to the Microsoft.Azure.Management.DataLake.StoreFileSystem.IFileSystemOperations.
filePath
Type: System.StringRequired. The path to the file to open.
accountName
Type: System.StringRequired. The name of the account to use
parameters
Type: Microsoft.Azure.Management.DataLake.StoreFileSystem.Models.FileOpenParametersOptional. The optional parameters to pass to the open operation
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