public Task ReportProgressAsync(int current, int maximum)
        {
#pragma warning disable CS0618 // Type or member is obsolete
            return(_context.ReportProgressAsync(current, maximum));

#pragma warning restore CS0618 // Type or member is obsolete
        }
Example #2
0
 public Task ReportProgressAsync(int current, int maximum)
 => _context.ReportProgressAsync(current, maximum).AsTask();
 public Task ReportProgressAsync(int current, int maximum)
 => _underlyingContext.ReportProgressAsync(current, maximum);
 public Task ReportProgressAsync(int current, int maximum)
 {
     return(_context.ReportProgressAsync(current, maximum));
 }