// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the Apache 2.0 License.
// See the LICENSE file in the project root for more information. 
using System.Collections.Generic;
using System.Linq.Expressions;
namespace System.Linq
{
    /// 
    /// Asynchronous enumerable sequence represented by an expression tree.
    /// 
    public interface IAsyncQueryable
    {
        /// 
        /// Gets the type of the elements in the sequence.
        /// 
        Type ElementType { get; }
        /// 
        /// Gets the expression representing the sequence.
        /// 
        Expression Expression { get; }
        /// 
        /// Gets the query provider used to execute the sequence.
        /// 
        IAsyncQueryProvider Provider { get; }
    }
    /// 
    /// Asynchronous enumerable sequence represented by an expression tree.
    /// 
    /// The type of the elements in the sequence.
    public interface IAsyncQueryable : IAsyncEnumerable, IAsyncQueryable
    {
    }
}