[]
Returns the items that has be loaded so far.
public IEnumerable<ILoadedItem<T>> GetLoadedItems()
Public Function GetLoadedItems() As IEnumerable(Of ILoadedItem(Of T))
| Type | Description |
|---|---|
| IEnumerable<ILoadedItem<T>> |
Returns all the items that has be loaded so far.
public IEnumerable<ILoadedItem<T>> GetLoadedItems(int? fromIndex = null, int? toIndex = null)
Public Function GetLoadedItems(Optional fromIndex As Integer? = Nothing, Optional toIndex As Integer? = Nothing) As IEnumerable(Of ILoadedItem(Of T))
| Type | Name | Description |
|---|---|---|
| int? | fromIndex | The starting index, if not specified this will be 0. |
| int? | toIndex | The starting index, if not specified this will be Count - 1. |
| Type | Description |
|---|---|
| IEnumerable<ILoadedItem<T>> |