1
0

IOrderedAsyncQueryable.cs 755 B

123456789101112131415161718192021222324
  1. // Licensed to the .NET Foundation under one or more agreements.
  2. // The .NET Foundation licenses this file to you under the Apache 2.0 License.
  3. // See the LICENSE file in the project root for more information.
  4. namespace System.Linq
  5. {
  6. /// <summary>
  7. /// Ordered asynchronous enumerable sequence represented by an expression tree.
  8. /// </summary>
  9. public interface IOrderedAsyncQueryable : IAsyncQueryable
  10. {
  11. }
  12. /// <summary>
  13. /// Ordered asynchronous enumerable sequence represented by an expression tree.
  14. /// </summary>
  15. /// <typeparam name="T">The type of the elements in the sequence.</typeparam>
  16. public interface IOrderedAsyncQueryable<
  17. #if !NO_VARIANCE
  18. out
  19. #endif
  20. T> : IAsyncQueryable<T>
  21. {
  22. }
  23. }