Table of Contents

Enum AsyncManualResetEventResult

Namespace
LfrlAnvil.Chrono.Async
Assembly
LfrlAnvil.Chrono.dll

Represents possible values returned by AsyncManualResetEvent tasks.

public enum AsyncManualResetEventResult : byte

Fields

AlreadyAwaited = 3

Specifies that the manual reset event task creation has been cancelled due to the event already being awaited.

Disposed = 0

Specifies that the manual reset event or its owner has been disposed.

Signaled = 2

Specifies that the manual reset event task has been cancelled due to the event being in the signaled state.

TimedOut = 1

Specifies that the manual reset event task has completed due to timeout.