System.Reactive.Concurrency.SchedulerOperationAwaiter
(Infrastructure) Scheduler operation awaiter type used by the code generated for C# await and Visual Basic Await expressions.
namespace System.Reactive.Concurrency
{
public sealed class SchedulerOperationAwaiter : INotifyCompletion
{
public bool IsCompleted { get; }
public void GetResult();
public void OnCompleted(Action continuation);
}
}