示例#1
0
 public Task <Views.IViewResult <T> > QueryAsync <T>(Views.IViewQuery query)
 {
     throw new NotImplementedException();
 }
示例#2
0
 /// <summary>
 /// Sends a View request to the server to be executed using async/await
 /// </summary>
 /// <typeparam name="T">The Type of the body of the Views return value or row.</typeparam>
 /// <param name="query">An <see cref="IViewQuery" /> to be executed.</param>
 /// <returns>
 /// The result of the View request as an <see cref="Task{IViewResult}" /> to be awaited on where T is the Type of each row.
 /// </returns>
 /// <exception cref="System.NotImplementedException"></exception>
 public virtual Task <Views.IViewResult <T> > SendWithRetryAsync <T>(Views.IViewQuery query)
 {
     throw new NotImplementedException();
 }
示例#3
0
 public Views.IViewResult <T> Query <T>(Views.IViewQuery query)
 {
     throw new NotImplementedException();
 }