Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/rx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Rx.NET/System.Reactive.Providers/Reactive/Joins/QueryablePlan.cs')
-rw-r--r--Rx.NET/System.Reactive.Providers/Reactive/Joins/QueryablePlan.cs27
1 files changed, 0 insertions, 27 deletions
diff --git a/Rx.NET/System.Reactive.Providers/Reactive/Joins/QueryablePlan.cs b/Rx.NET/System.Reactive.Providers/Reactive/Joins/QueryablePlan.cs
deleted file mode 100644
index cb89983..0000000
--- a/Rx.NET/System.Reactive.Providers/Reactive/Joins/QueryablePlan.cs
+++ /dev/null
@@ -1,27 +0,0 @@
-// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
-
-#pragma warning disable 1591
-
-using System.Linq.Expressions;
-
-namespace System.Reactive.Joins
-{
- /// <summary>
- /// Represents an execution plan for join patterns represented by an expression tree.
- /// </summary>
- /// <typeparam name="TResult">The type of the results produced by the plan.</typeparam>
- public class QueryablePlan<TResult>
- {
- internal QueryablePlan(Expression expression)
- {
- Expression = expression;
- }
-
- /// <summary>
- /// Gets the expression tree representing the join pattern execution plan.
- /// </summary>
- public Expression Expression { get; private set; }
- }
-}
-
-#pragma warning restore 1591 \ No newline at end of file