ListObservable(IObservable) constructor¶
Defined in
Type: ListObservableSystem.Reactive
Assembly: System.Reactive.dll
Applies to
netstandard2.0
public ListObservable(IObservable<T> source)
Summary: Constructs an object that retains the values of source and signals the end of the sequence.
Parameters
| Name | Type | Description |
|---|---|---|
source | IObservable | The observable sequence whose elements will be retained in the list. |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentNullException | source is null. |