HandleFlags Enumeration
Indicates properties of an object handle.
Namespace: DevCase.Win32.EnumsAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[FlagsAttribute]
public enum HandleFlags
<FlagsAttribute>
Public Enumeration HandleFlags
Dim instance As HandleFlags
[FlagsAttribute]
public enum class HandleFlags
[<FlagsAttribute>]
type HandleFlags
No code example is currently available or this language may not be supported.
None |
0 |
None.
|
Inherit |
1 |
If this flag is set, a child process created with the inheritHandles parameter of
CreateProcess(String, StringBuilder, SecurityAttributes, SecurityAttributes, Boolean, CreateProcessFlags, IntPtr, String, ProcessStartupInfo, ProcessInformation) set to will inherit the object handle.
|
ProtectFromClose |
2 |
If this flag is set, calling the CloseHandle(IntPtr) function will not close the object handle.
|