Class PnPCoreHttpRequestsSharePointRestOptions
SharePoint Online REST options
Inherited Members
Namespace: PnP.Core.Services.Builder.Configuration
Assembly: PnP.Core.dll
Syntax
public class PnPCoreHttpRequestsSharePointRestOptions
SharePoint Online REST options
public class PnPCoreHttpRequestsSharePointRestOptions
Defines the default page size for querying items in SharePoint REST
public int DefaultPageSize { get; set; }
| int |
How many seconds to wait for the next retry attempt. Defaults to 3
public int DelayInSeconds { get; set; }
| int |
When not using retry-after, how many times can a retry be made. Defaults to 10
public int MaxRetries { get; set; }
| int |
Use an incremental strategy for the delay: each retry doubles the previous delay time. Defaults to true
public bool UseIncrementalDelay { get; set; }
| bool |
Use the Retry-After header for calculating the delay in case of a retry. Defaults to true
public bool UseRetryAfterHeader { get; set; }
| bool |