ItemsProviderResult<TItem>(IEnumerable<TItem>, Int32) Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Instantiates a new ItemsProviderResult<TItem> instance.
public:
ItemsProviderResult(System::Collections::Generic::IEnumerable<TItem> ^ items, int totalItemCount);
public ItemsProviderResult (System.Collections.Generic.IEnumerable<TItem> items, int totalItemCount);
new Microsoft.AspNetCore.Components.Web.Virtualization.ItemsProviderResult<'Item> : seq<'Item> * int -> Microsoft.AspNetCore.Components.Web.Virtualization.ItemsProviderResult<'Item>
Public Sub New (items As IEnumerable(Of TItem), totalItemCount As Integer)
Parameters
- items
- IEnumerable<TItem>
The items to provide.
- totalItemCount
- Int32
The total item count in the source generating the items provided.