Advertisement
Guest User

Untitled

a guest
Feb 16th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.31 KB | None | 0 0
  1. using System.Threading;
  2. using System.Threading.Tasks;
  3.  
  4. namespace Dodo.Tools.Reporting.Razor
  5. {
  6.     public interface IRazorMvcViewRenderer
  7.     {
  8.         Task<byte[]> RenderAsync<TModel>(
  9.             string viewName,
  10.             TModel model,
  11.             CancellationToken cancellationToken = default);
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement