Table of Contents

Class PnPCoreHttpRequestsAzureActiveDirectoryOptions

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

Microsoft Graph REST options

public class PnPCoreHttpRequestsAzureActiveDirectoryOptions
Inheritance
PnPCoreHttpRequestsAzureActiveDirectoryOptions
Inherited Members

Properties

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