You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Initializes a new instance of the <see cref="IncrementalLoadingCollection{TSource, IType}"/> class optionally specifying how many items to load for each data page.
123
+
/// </summary>
124
+
/// <param name="itemsPerPage">
125
+
/// The number of items to retrieve for each call. Default is 20.
126
+
/// </param>
127
+
/// <param name="onStartLoading">
128
+
/// An <see cref="Action"/> that is called when a retrieval operation begins.
129
+
/// </param>
130
+
/// <param name="onEndLoading">
131
+
/// An <see cref="Action"/> that is called when a retrieval operation ends.
132
+
/// </param>
133
+
/// <param name="onError">
134
+
/// An <see cref="Action"/> that is called if an error occours during data retrieval.
/// Initializes a new instance of the <see cref="IncrementalLoadingCollection{TSource, IType}"/> class using the specified <see cref="IIncrementalSource{TSource}"/> implementation and, optionally, how many items to load for each data page.
0 commit comments