// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license 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 { } }