IProgress
IProgress<T>
is an interface of .Net Framework which defines a provider for progress updates.
public interface IProgress<in T>
{
void Report(T value);
}
See Also
https://learn.microsoft.com/en-us/dotnet/api/system.iprogress-1
IProgress
IProgress<T>
is an interface of .Net Framework which defines a provider for progress updates.
public interface IProgress<in T>
{
void Report(T value);
}
See Also
https://learn.microsoft.com/en-us/dotnet/api/system.iprogress-1