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.
Returns an enumerator that enumerates all values of the observable sequence.
Namespace: System.Reactive.Linq
Assembly: System.Reactive (in System.Reactive.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function GetEnumerator(Of TSource) ( _
source As IObservable(Of TSource) _
) As IEnumerator(Of TSource)
'Usage
Dim source As IObservable(Of TSource)
Dim returnValue As IEnumerator(Of TSource)
returnValue = source.GetEnumerator()
public static IEnumerator<TSource> GetEnumerator<TSource>(
this IObservable<TSource> source
)
[ExtensionAttribute]
public:
generic<typename TSource>
static IEnumerator<TSource>^ GetEnumerator(
IObservable<TSource>^ source
)
static member GetEnumerator :
source:IObservable<'TSource> -> IEnumerator<'TSource>
JScript does not support generic types and methods.
Type Parameters
- TSource
The type of source.
Parameters
- source
Type: System.IObservable<TSource>
An observable sequence to get an enumerator for.
Return Value
Type: System.Collections.Generic.IEnumerator<TSource>
The enumerator that can be used to enumerate over the elements in the observable sequence.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IObservable<TSource>. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .