Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. public async Task QueueCallAsync(Task apiCall, RequestType requestType)
  2. {
  3. // how do you forward the call to the generic implementation while omitting the result?
  4. await QueueCallAsync<Void>(apiCall, requestType);
  5. }
  6.  
  7. public async Task<T> QueueCallAsync<T>(Task<T> apiCall, RequestType requestType)
  8. {
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement