Esempio n. 1
0
 /// <summary>
 /// Sends a N1QL query to the server to be executed using the <see cref="IQueryRequest" /> object using async/await.
 /// </summary>
 /// <typeparam name="T">The Type T of the body of each result row.</typeparam>
 /// <param name="queryRequest">The <see cref="IQueryRequest" /> object to send to the server.</param>
 /// <param name="cancellationToken">Token which can cancel the query.</param>
 /// <returns>
 /// An <see cref="Task{IQueryResult}" /> object to be awaited on that is the result of the query.
 /// </returns>
 /// <exception cref="System.NotImplementedException"></exception>
 public virtual Task <N1QL.IQueryResult <T> > SendWithRetryAsync <T>(N1QL.IQueryRequest queryRequest, CancellationToken cancellationToken)
 {
     throw new NotImplementedException();
 }
Esempio n. 2
0
 public Task <N1QL.IQueryResult <T> > QueryAsync <T>(N1QL.IQueryRequest queryRequest)
 {
     throw new NotImplementedException();
 }
Esempio n. 3
0
 /// <summary>
 /// Sends a N1QL query to the server to be executed using the <see cref="IQueryRequest" /> object.
 /// </summary>
 /// <typeparam name="T">The Type T of the body of each result row.</typeparam>
 /// <param name="queryRequest">The <see cref="IQueryRequest" /> object to send to the server.</param>
 /// <returns>
 /// An <see cref="IQueryResult{T}" /> object that is the result of the query.
 /// </returns>
 /// <exception cref="System.NotImplementedException"></exception>
 public virtual N1QL.IQueryResult <T> SendWithRetry <T>(N1QL.IQueryRequest queryRequest)
 {
     throw new NotImplementedException();
 }
Esempio n. 4
0
 public N1QL.IQueryResult <T> Query <T>(N1QL.IQueryRequest queryRequest)
 {
     throw new NotImplementedException();
 }