Esempio n. 1
0
 internal static async Task ExecuteAsyncWithProgress(this IAsyncProcessor processor, bool throwOnError)
 {
     await processor.ExecuteAsyncWithProgress(throwOnError, null).ConfigureAwait(false);
 }
Esempio n. 2
0
 internal static Task ExecuteAsyncWithProgress(this IAsyncProcessor processor, bool throwOnError)
 {
     return(processor.ExecuteAsyncWithProgress(throwOnError, null));
 }