8 references to Awaiting
System.Net.Quic (8)
System\Net\Quic\Internal\ResettableValueTaskSource.cs (8)
61
/// Tries to get a value task representing this task source. If this task source is <see cref="State.None"/>, it'll also transition it into <see cref="State.
Awaiting
"/> state.
62
/// It prevents concurrent operations from being invoked since it'll return <c>false</c> if the task source was already in <see cref="State.
Awaiting
"/> state.
105
_state = State.
Awaiting
;
168
if (state is State.None or State.
Awaiting
)
178
if (state is State.None or State.
Awaiting
)
185
if (state is State.None or State.
Awaiting
)
218
/// Tries to transition from <see cref="State.
Awaiting
"/> to either <see cref="State.Ready"/> or <see cref="State.Completed"/>, depending on the value of <paramref name="final"/>.
229
/// Tries to transition from <see cref="State.
Awaiting
"/> to either <see cref="State.Ready"/> or <see cref="State.Completed"/>, depending on the value of <paramref name="final"/>.