Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Guard.Positive()
public void SetPageSize(int size) { if (size <= 0) throw new ArgumentOutOfRangeException(nameof(size)); }
public void SetPageSize(int size) { Guard.Positive(size); }
dotnet_diagnostic.AL0049.severity = warning
Was this page helpful?