1 implementation of IProgress
mscorlib (1)
system\progress.cs (1)
36public class Progress<T> : IProgress<T>
2 references to IProgress
mscorlib (1)
system\progress.cs (1)
98void IProgress<T>.Report(T value) { OnReport(value); }
System.ServiceModel (1)
System\ServiceModel\Description\ServiceReflector.cs (1)
344internal static readonly Type IProgressType = typeof(IProgress<>);