Skip to content

,--0)} ,--0,System.Reactive.Concurrency.IScheduler)}

Observable.Append(IObservable, TSource) method

Defined in

Type: Observable Namespace: System.Reactive.Linq Assembly: System.Reactive.dll

Applies to

netstandard2.0

Overloads

  • 1. public static IObservable<TSource> Append<TSource>(this IObservable<TSource> source, TSource value)
  • 2. public static IObservable<TSource> Append<TSource>(this IObservable<TSource> source, TSource value, IScheduler scheduler)

1. Overload

public static IObservable<TSource> Append<TSource>(this IObservable<TSource> source, TSource value)

Summary: Append a value to an observable sequence.

Type parameters

NameDescription
TSourceThe type of the elements in the source sequence.

Parameters

NameTypeDescription
sourceIObservableSource sequence to append the value to.
valueTSourceValue to append to the specified sequence.

Returns: IObservable -- The source sequence appended with the specified value.

Exceptions

TypeCondition
System.ArgumentNullExceptionsource is null.

2. Overload

public static IObservable<TSource> Append<TSource>(this IObservable<TSource> source, TSource value, IScheduler scheduler)

Summary: Append a value to an observable sequence.

Type parameters

NameDescription
TSourceThe type of the elements in the source sequence.

Parameters

NameTypeDescription
sourceIObservableSource sequence to append the value to.
valueTSourceValue to append to the specified sequence.
scheduler[IScheduler](#Scheduler to emit the append values on.

Returns: IObservable -- The source sequence appended with the specified value.

Exceptions

TypeCondition
System.ArgumentNullExceptionsource is null.