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. |
Implements
ReportMany<T1, TKey>(IObservableCache<T1, TKey>)
Subscribes to multiple error sources and reports their errors.
Declaration
public IDisposable ReportMany<T1, TKey>(IObservableCache<T1, TKey> sources) where T1 : IHasErrors
Parameters
| Type | Name | Description |
|---|---|---|
| IObservableCache<T1, TKey> | 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 |
|---|---|
| T1 | |
| TKey |