Click or drag to resize

FileReadLinesTransacted Method (KernelTransaction, String, Encoding, PathFormat)

[AlphaFS] Read the lines of a file that has a specified encoding.

Namespace:  Alphaleonis.Win32.Filesystem
Assembly:  AlphaFS (in AlphaFS.dll) Version: 2.2
Syntax
public static IEnumerable<string> ReadLinesTransacted(
	KernelTransaction transaction,
	string path,
	Encoding encoding,
	PathFormat pathFormat
)

Parameters

transaction
Type: Alphaleonis.Win32.FilesystemKernelTransaction
The transaction.
path
Type: SystemString
The file to read.
encoding
Type: System.TextEncoding
The encoding that is applied to the contents of the file.
pathFormat
Type: Alphaleonis.Win32.FilesystemPathFormat
Indicates the format of the path parameter(s).

Return Value

Type: IEnumerableString
All the lines of the file, or the lines that are the result of a query.
See Also