MessageFormatterProgressTracker.FindIProgressOfT(Type) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Converts given Type to its IProgress<T> type.
public static Type FindIProgressOfT (Type objectType);
public static Type? FindIProgressOfT (Type objectType);
static member FindIProgressOfT : Type -> Type
Public Shared Function FindIProgressOfT (objectType As Type) As Type
Parameters
- objectType
- Type
The type which may implement IProgress<T>.
Returns
The IProgress<T> from given Type object, or null
if no such interface was found in the given objectType
.