Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Subscribes an observer to an enumerable sequence with the specified source and observer.
Namespace: System.Reactive.Linq
Assembly: System.Reactive (in System.Reactive.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function Subscribe(Of TSource) ( _
source As IEnumerable(Of TSource), _
observer As IObserver(Of TSource) _
) As IDisposable
'Usage
Dim source As IEnumerable(Of TSource)
Dim observer As IObserver(Of TSource)
Dim returnValue As IDisposable
returnValue = source.Subscribe(observer)
public static IDisposable Subscribe<TSource>(
this IEnumerable<TSource> source,
IObserver<TSource> observer
)
[ExtensionAttribute]
public:
generic<typename TSource>
static IDisposable^ Subscribe(
IEnumerable<TSource>^ source,
IObserver<TSource>^ observer
)
static member Subscribe :
source:IEnumerable<'TSource> *
observer:IObserver<'TSource> -> IDisposable
JScript does not support generic types and methods.
Type Parameters
- TSource
The type of source.
Parameters
- source
Type: System.Collections.Generic.IEnumerable<TSource>
The enumerable sequence to subscribe to.
- observer
Type: System.IObserver<TSource>
The observer that will receive notifications from the enumerable sequence.
Return Value
Type: System.IDisposable
The disposable object that can be used to unsubscribe the observer from the enumerable.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerable<TSource>. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .