您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

21 行
607 B

  1. namespace Services
  2. {
  3. public sealed class InfiniteScrollingItemsProviderRequest
  4. {
  5. public InfiniteScrollingItemsProviderRequest(int startIndex, int page, CancellationToken cancellationToken)
  6. {
  7. StartIndex = startIndex;
  8. CancellationToken = cancellationToken;
  9. Page = page;
  10. }
  11. public int StartIndex { get; }
  12. public CancellationToken CancellationToken { get; }
  13. public int Page { get; }
  14. }
  15. public delegate Task<IEnumerable<T>> ItemsProviderRequestDelegate<T>(InfiniteScrollingItemsProviderRequest request);
  16. }