QueryablePlan.cs 909 B

1234567891011121314151617181920212223242526272829
  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. #pragma warning disable 1591
  5. using System.Linq.Expressions;
  6. namespace System.Reactive.Joins
  7. {
  8. /// <summary>
  9. /// Represents an execution plan for join patterns represented by an expression tree.
  10. /// </summary>
  11. /// <typeparam name="TResult">The type of the results produced by the plan.</typeparam>
  12. public class QueryablePlan<TResult>
  13. {
  14. internal QueryablePlan(Expression expression)
  15. {
  16. Expression = expression;
  17. }
  18. /// <summary>
  19. /// Gets the expression tree representing the join pattern execution plan.
  20. /// </summary>
  21. public Expression Expression { get; private set; }
  22. }
  23. }
  24. #pragma warning restore 1591