Exemple #1
0
 /// <summary>
 ///   Provide statistics about the query, such as total count of matching records
 /// </summary>
 public void Statistics(out FilesQueryStatistics stats)
 {
     stats = queryStats;
 }
Exemple #2
0
 /// <summary>
 ///     Provide statistics about the query, such as total count of matching records
 /// </summary>
 IAsyncFilesQuery <T> IAsyncFilesQueryBase <T, IAsyncFilesQuery <T> > .Statistics(out FilesQueryStatistics stats)
 {
     Statistics(out stats);
     return(this);
 }