Click or drag to resize

FileOpenTextTransacted Method (KernelTransaction, String, Encoding)

[AlphaFS] Opens an existing Encoding encoded text file for reading.

Namespace:  Alphaleonis.Win32.Filesystem
Assembly:  AlphaFS (in AlphaFS.dll) Version: 2.2
Syntax
public static StreamReader OpenTextTransacted(
	KernelTransaction transaction,
	string path,
	Encoding encoding
)

Parameters

transaction
Type: Alphaleonis.Win32.FilesystemKernelTransaction
The transaction.
path
Type: SystemString
The file to be opened for reading.
encoding
Type: System.TextEncoding
The Encoding applied to the contents of the file.

Return Value

Type: StreamReader
A StreamReader on the specified path.
Remarks
This method is equivalent to the StreamReader(String) constructor overload.
See Also