AsyncDolls.TaskCompletionSource.SetResult C# (CSharp) Method

SetResult() public method

Transitions the underlying Task into the TaskStatus.RanToCompletion state.
The underlying has already been completed.
public SetResult ( ) : void
return void
        public void SetResult()
        {
            _tcs.SetResult(null);
        }