dotnet-core/release-notes/3.0/preview/api-diff/preview1/3.0-preview1_System.Threading.Tasks.Sources.md
Ahson Khan e6b9c28c28
Add API diff between .NET Core 2.2 and .NET Core 3.0 preview1. (#2256)
* Add API diff between .NET Core 2.2 and .NET Core 3.0 preview1.

* Only compare ref assemblies within M.NetCore.App rather than all impl
assemblies from the repo.

* Remove Microsoft.* namespaces and update heading.
2019-01-28 21:02:57 -08:00

637 B

System.Threading.Tasks.Sources

 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);
+    }
 }