WaitObjectResult Enumeration

Specifies the event that caused the functions WaitForSingleObject(IntPtr, UInt32) or WaitForSingleObjectEx(IntPtr, UInt32, Boolean) to return.

Definition

Namespace: DevCase.Win32.Enums
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public enum WaitObjectResult

Remarks

Members

Object0 0 The state of the specified object is signaled.
Abandoned 128 The specified object is a mutex object that was not released by the thread that owned the mutex object before the owning thread terminated.

Ownership of the mutex object is granted to the calling thread and the mutex state is set to nonsignaled.

the mutex was protecting persistent state information, you should check it for consistency.

IOCompletion 192 The wait was ended by one or more user-mode asynchronous procedure calls (APC) queued to the thread.
Timeout 258 The time-out interval elapsed, and the object's state is nonsignaled.
Failed 4,294,967,295 The function has failed. To get extended error information, call GetLastWin32Error.

See Also