FileReadAllTextTransacted Method (KernelTransaction, String, Encoding) |
[AlphaFS] Opens a file, reads all lines of the file with the specified encoding, and then closes the file.
Namespace:
Alphaleonis.Win32.Filesystem
Assembly:
AlphaFS (in AlphaFS.dll) Version: 2.2
Syntax public static string ReadAllTextTransacted(
KernelTransaction transaction,
string path,
Encoding encoding
)
Public Shared Function ReadAllTextTransacted (
transaction As KernelTransaction,
path As String,
encoding As Encoding
) As String
public:
static String^ ReadAllTextTransacted(
KernelTransaction^ transaction,
String^ path,
Encoding^ encoding
)
static member ReadAllTextTransacted :
transaction : KernelTransaction *
path : string *
encoding : Encoding -> string
Parameters
- transaction
- Type: Alphaleonis.Win32.FilesystemKernelTransaction
The transaction. - path
- Type: SystemString
The file to open for reading. - encoding
- Type: System.TextEncoding
The Encoding applied to the contents of the file.
Return Value
Type:
StringAll lines of the file.
See Also