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.Interfaces/IObservable.cs')
-rw-r--r--Rx.NET/System.Reactive.Interfaces/IObservable.cs21
1 files changed, 0 insertions, 21 deletions
diff --git a/Rx.NET/System.Reactive.Interfaces/IObservable.cs b/Rx.NET/System.Reactive.Interfaces/IObservable.cs
deleted file mode 100644
index f1b62d2..0000000
--- a/Rx.NET/System.Reactive.Interfaces/IObservable.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
-
-#if NO_RXINTERFACES
-namespace System
-{
- /// <summary>
- /// Represents a push-style collection.
- /// </summary>
-#if !NO_VARIANCE
- public interface IObservable<out T>
-#else
- public interface IObservable<T>
-#endif
- {
- /// <summary>
- /// Subscribes an observer to the observable sequence.
- /// </summary>
- IDisposable Subscribe(IObserver<T> observer);
- }
-}
-#endif \ No newline at end of file