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.
Concatenates an enumerable sequence of observable sequences.
Namespace: System.Reactive.Linq
Assembly: System.Reactive (in System.Reactive.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function Concat(Of TSource) ( _
sources As IEnumerable(Of IObservable(Of TSource)) _
) As IObservable(Of TSource)
'Usage
Dim sources As IEnumerable(Of IObservable(Of TSource))
Dim returnValue As IObservable(Of TSource)
returnValue = sources.Concat()
public static IObservable<TSource> Concat<TSource>(
this IEnumerable<IObservable<TSource>> sources
)
[ExtensionAttribute]
public:
generic<typename TSource>
static IObservable<TSource>^ Concat(
IEnumerable<IObservable<TSource>^>^ sources
)
static member Concat :
sources:IEnumerable<IObservable<'TSource>> -> IObservable<'TSource>
JScript does not support generic types and methods.
Type Parameters
- TSource
The type of source.
Parameters
- sources
Type: System.Collections.Generic.IEnumerable<IObservable<TSource>>
The observable sequences to concatenate.
Return Value
Type: System.IObservable<TSource>
An observable sequence that contains the elements of each given sequence, in sequential order.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerable<IObservable<TSource>>. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .