Method | Description | |
---|---|---|
AttachConsole ( int dwProcessId ) : void | ||
CreateFile ( string fileName, FileAccess fileAccess, FileShare fileShare, FileMode fileMode, FileAttributes flags ) : Stream | ||
CreateProcess ( string lpApplicationName, string lpCommandLine, |
||
FreeConsole ( ) : void | ||
GetExitCodeProcess ( |
||
ReadFile ( SafeFileHandle file, byte buffer, int offset, int count ) : int | ||
WaitForSingleObject ( |
||
WriteFile ( SafeFileHandle file, byte buffer, int offset, int count ) : int |
Method | Description | |
---|---|---|
_AttachConsole ( int dwProcessId ) : bool | ||
_CreateFile ( string fileName, [ fileAccess, [ fileShare, |
||
_CreateProcess ( string lpApplicationName, string lpCommandLine, |
||
_FreeConsole ( ) : bool | ||
_GetExitCodeProcess ( |
||
_ReadFile ( SafeFileHandle hFile, byte lpBuffer, int nNumberOfBytesToRead, int &lpNumberOfBytesRead, |
||
_WaitForSingleObject ( [ hHandle, [ dwMilliseconds ) : int | ||
_WriteFile ( SafeFileHandle hFile, byte lpBuffer, int nNumberOfBytesToWrite, int &lpNumberOfBytesWritten, |
public static AttachConsole ( int dwProcessId ) : void | ||
dwProcessId | int | |
return | void |
public static CreateFile ( string fileName, FileAccess fileAccess, FileShare fileShare, FileMode fileMode, FileAttributes flags ) : Stream | ||
fileName | string | |
fileAccess | FileAccess | |
fileShare | FileShare | |
fileMode | FileMode | |
flags | FileAttributes | |
return | Stream |
public static CreateProcess ( string lpApplicationName, string lpCommandLine, |
||
lpApplicationName | string | |
lpCommandLine | string | |
lpProcessAttributes | ||
lpThreadAttributes | ||
bInheritHandles | bool | |
dwCreationFlags | uint | |
lpEnvironment | ||
lpCurrentDirectory | string | |
return | PROCESS_INFORMATION |
public static GetExitCodeProcess ( |
||
hProcess | ||
return | int |
public static ReadFile ( SafeFileHandle file, byte buffer, int offset, int count ) : int | ||
file | SafeFileHandle | |
buffer | byte | |
offset | int | |
count | int | |
return | int |
public static WaitForSingleObject ( |
||
hHandle | ||
dwMilliseconds | int | |
return | int |
public static WriteFile ( SafeFileHandle file, byte buffer, int offset, int count ) : int | ||
file | SafeFileHandle | |
buffer | byte | |
offset | int | |
count | int | |
return | int |