Method ReportMany
ReportMany<T>(IObservableList<T>)
Subscribes to multiple error sources and reports their errors.
Declaration
public IDisposable ReportMany<T>(IObservableList<T> sources) where T : IHasErrors
Parameters
Type | Name | Description |
---|---|---|
IObservableList<T> | sources | The error sources to subscribe to. |
Returns
Type | Description |
---|---|
IDisposable | A subscription that can be disposed to stop reporting errors from the sources. |
Type Parameters
Name | Description |
---|---|
T | The type of error sources, must implement IHasErrors. |