// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
namespace System.Linq
{
///
/// Ordered asynchronous enumerable sequence represented by an expression tree.
///
public interface IOrderedAsyncQueryable : IAsyncQueryable
{
}
///
/// Ordered asynchronous enumerable sequence represented by an expression tree.
///
/// The type of the elements in the sequence.
public interface IOrderedAsyncQueryable<
#if !NO_VARIANCE
out
#endif
T> : IAsyncQueryable
{
}
}