コード例 #1
0
 public static Task MyAsyncOperation(
     this IMyInterface dependency)
 => dependency.MyOtherAsyncOperation();
コード例 #2
0
 public static Task MyAsyncOperation(
     this IMyInterface myInterface,
     CancellationToken cancellationToken)
 => myInterface.MyOtherAsyncOperation(cancellationToken);