Click or drag to resize

WikiListTPaginationSize Property

This is preliminary documentation and is subject to change.

Gets/sets maximum items returned per MediaWiki API invocation.

Namespace: WikiClientLibrary.Generators.Primitive
Assembly: WikiClientLibrary (in WikiClientLibrary.dll) Version: 0.9.0-int.3+0a73c45f0c78941900e328c6c6b819597b665e00
Syntax
public int PaginationSize { get; set; }

Property Value

Int32
Maximum count of items returned per MediaWiki API invocation. This limit is 10 by default, and can be set as high as 500 for regular users, or 5000 for users with the apihighlimits right (typically in bot or sysop group).
Remarks
This property decides how many items returned at most per MediaWiki API invocation. Note that the enumerator returned from EnumItemsAsync(CancellationToken) or will automatically make further MediaWiki API invocations to ask for the next batch of results, when needed.
See Also