Enum AsyncManualResetEventResult
Represents possible values returned by AsyncManualResetEvent tasks.
public enum AsyncManualResetEventResult : byte
Fields
AlreadyAwaited = 3Specifies that the manual reset event task creation has been cancelled due to the event already being awaited.
Disposed = 0Specifies that the manual reset event or its owner has been disposed.
Signaled = 2Specifies that the manual reset event task has been cancelled due to the event being in the signaled state.
TimedOut = 1Specifies that the manual reset event task has completed due to timeout.