mscorlib(4.0.0.0) API with additions
INotifyCompletion.cs
2 {
4  [__DynamicallyInvokable]
5  public interface INotifyCompletion
6  {
10  [__DynamicallyInvokable]
11  void OnCompleted(Action continuation);
12  }
13 }
Represents an operation that schedules continuations when it completes.
void OnCompleted(Action continuation)
Schedules the continuation action that's invoked when the instance completes.
delegate void Action()
Encapsulates a method that has no parameters and does not return a value.