Interface IPagedResult<TItem>
IResult interface for a page of data.
Inherited Members
Namespace: Tableau.Migration.Paging
Assembly: Tableau.Migration.dll
Syntax
public interface IPagedResult<TItem> : IResult<IImmutableList<TItem>>, IResult, IPageInfo
Type Parameters
| Name | Description |
|---|---|
| TItem | The item type. |
Methods
CastPagedFailure<UItem>()
Casts a failure result to another type.
Declaration
IPagedResult<UItem> CastPagedFailure<UItem>()
Returns
| Type | Description |
|---|---|
| IPagedResult<UItem> | The casted result. |
Type Parameters
| Name | Description |
|---|---|
| UItem | The type to cast to. |
Exceptions
| Type | Condition |
|---|---|
| InvalidOperationException | If the result is not a failure result. |