Table of Contents

Class PnPCoreHttpRequestsSharePointRestOptions

Namespace
PnP.Core.Services.Builder.Configuration
Assembly
PnP.Core.dll

SharePoint Online REST options

public class PnPCoreHttpRequestsSharePointRestOptions
Inheritance
PnPCoreHttpRequestsSharePointRestOptions
Inherited Members

Properties

DefaultPageSize

Defines the default page size for querying items in SharePoint REST

public int DefaultPageSize { get; set; }

Property Value

int

DelayInSeconds

How many seconds to wait for the next retry attempt. Defaults to 3

public int DelayInSeconds { get; set; }

Property Value

int

MaxRetries

When not using retry-after, how many times can a retry be made. Defaults to 10

public int MaxRetries { get; set; }

Property Value

int

UseIncrementalDelay

Use an incremental strategy for the delay: each retry doubles the previous delay time. Defaults to true

public bool UseIncrementalDelay { get; set; }

Property Value

bool

UseRetryAfterHeader

Use the Retry-After header for calculating the delay in case of a retry. Defaults to true

public bool UseRetryAfterHeader { get; set; }

Property Value

bool