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