Method | Description | |
---|---|---|
CloseHandle ( |
Closes an open object handle.
|
|
HandleToProcess ( |
Converts an handle into a Process object assuming this is a process handle.
|
|
HandleToProcessId ( |
Converts an handle into a process id assuming this is a process handle.
|
|
HandleToThread ( |
Converts an handle into a ProcessThread object assuming this is a thread handle.
|
|
HandleToThreadId ( |
Converts an handle into a thread id assuming this is a thread handle.
|
|
ValidateAsArgument ( |
Validates an handle to fit correctly as argument.
|
|
ValidateAsArgument ( |
Validates an handle to fit correctly as argument.
|
public static CloseHandle ( |
||
handle | A valid handle to an open object. | |
return | void |
public static HandleToProcess ( |
||
processHandle | A valid handle to an opened process. | |
return |
public static HandleToProcessId ( |
||
processHandle | A valid handle to an opened process. | |
return | int |
public static HandleToThread ( |
||
threadHandle | A valid handle to an opened thread. | |
return |
public static HandleToThreadId ( |
||
threadHandle | A valid handle to an opened thread. | |
return | int |
public static ValidateAsArgument ( |
||
handle | A handle to validate. | |
argumentName | string | The name of the argument that represents the handle in its original function. |
return | void |
public static ValidateAsArgument ( |
||
handle | A handle to validate. | |
argumentName | string | The name of the argument that represents the handle in its original function. |
return | void |