IEvaluatableObservable.cs 250 B

123456789
  1. // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
  2. namespace System.Reactive
  3. {
  4. interface IEvaluatableObservable<T>
  5. {
  6. IObservable<T> Eval();
  7. }
  8. }