FileReadAllBytesTransacted Method (KernelTransaction, String) |
[AlphaFS] Opens a binary file, reads the contents of the file into a byte array, and then closes the file.
Namespace:
Alphaleonis.Win32.Filesystem
Assembly:
AlphaFS (in AlphaFS.dll) Version: 2.2
Syntax public static byte[] ReadAllBytesTransacted(
KernelTransaction transaction,
string path
)
Public Shared Function ReadAllBytesTransacted (
transaction As KernelTransaction,
path As String
) As Byte()
public:
static array<unsigned char>^ ReadAllBytesTransacted(
KernelTransaction^ transaction,
String^ path
)
static member ReadAllBytesTransacted :
transaction : KernelTransaction *
path : string -> byte[]
Parameters
- transaction
- Type: Alphaleonis.Win32.FilesystemKernelTransaction
The transaction. - path
- Type: SystemString
The file to open for reading.
Return Value
Type:
ByteA byte array containing the contents of the file.
See Also