QueryablePlan.cs 831 B

123456789101112131415161718192021222324252627
  1. // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
  2. #pragma warning disable 1591
  3. using System.Linq.Expressions;
  4. namespace System.Reactive.Joins
  5. {
  6. /// <summary>
  7. /// Represents an execution plan for join patterns represented by an expression tree.
  8. /// </summary>
  9. /// <typeparam name="TResult">The type of the results produced by the plan.</typeparam>
  10. public class QueryablePlan<TResult>
  11. {
  12. internal QueryablePlan(Expression expression)
  13. {
  14. Expression = expression;
  15. }
  16. /// <summary>
  17. /// Gets the expression tree representing the join pattern execution plan.
  18. /// </summary>
  19. public Expression Expression { get; private set; }
  20. }
  21. }
  22. #pragma warning restore 1591