public class Progress<T> : IProgress<T> | |
{ | |
public Progress(); | |
public Progress(Action<T> handler); | |
protected virtual void OnReport(T value); | |
public event EventHandler<T> ProgressChanged; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment