moving apidiff out of preview (#3595)
This commit is contained in:
committed by
GitHub
parent
bc827f2b64
commit
58b0c128d2
@@ -0,0 +1,17 @@
|
||||
# System.Threading.Tasks.Sources
|
||||
|
||||
``` diff
|
||||
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);
|
||||
+ }
|
||||
}
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user