You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
namespace System.Threading.Tasks.Sources {
+ public struct ManualResetValueTaskSourceCore<TResult> {+ public bool RunContinuationsAsynchronously { get; set; }+ public short Version { get; }+ public TResult GetResult(short token);+ public ValueTaskSourceStatus GetStatus(short token);+ public void OnCompleted(Action<object> continuation, object state, short token, ValueTaskSourceOnCompletedFlags flags);+ public void Reset();+ public void SetException(Exception error);+ public void SetResult(TResult result);+ }
}