mscorlib(4.0.0.0) API with additions
IProgress.cs
1 namespace System
2 {
5  [__DynamicallyInvokable]
6  public interface IProgress<in T>
7  {
10  [__DynamicallyInvokable]
11  void Report(T value);
12  }
13 }
void Report(T value)
Reports a progress update.
Definition: __Canon.cs:3
Defines a provider for progress updates.
Definition: IProgress.cs:6