Observable.ToObservable<TSource> Method (IEnumerable<TSource>)
Converts an enumerable sequence to an observable sequence with a specified source.
Namespace: System.Reactive.Linq
Assembly: System.Reactive (in System.Reactive.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function ToObservable(Of TSource) ( _
source As IEnumerable(Of TSource) _
) As IObservable(Of TSource)
'Usage
Dim source As IEnumerable(Of TSource)
Dim returnValue As IObservable(Of TSource)
returnValue = source.ToObservable()
public static IObservable<TSource> ToObservable<TSource>(
this IEnumerable<TSource> source
)
[ExtensionAttribute]
public:
generic<typename TSource>
static IObservable<TSource>^ ToObservable(
IEnumerable<TSource>^ source
)
static member ToObservable :
source:IEnumerable<'TSource> -> IObservable<'TSource>
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 convert to an observable sequence.
Return Value
Type: System.IObservable<TSource>
The observable sequence whose elements are pulled from the given enumerable sequence.
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 .