IOrderedAsyncQueryable.cs 748 B

123456789101112131415161718192021
  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<out T> : IAsyncQueryable<T>, IOrderedAsyncQueryable
  17. {
  18. }
  19. }