Progress<T> Constructor (Action<T>)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Initializes the Progress<T> object with the specified callback.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- handler
- Type: System.Action<T>
A handler to invoke for each reported progress value. This handler will be invoked in addition to any delegates registered with the ProgressChanged event. Depending on the SynchronizationContext instance captured by the Progress<T> at construction, it is possible that this handler instance could be invoked concurrently with itself.
Show: