Class PnPCoreHttpRequestsAzureActiveDirectoryOptions
Microsoft Graph REST options
Inheritance
System.Object
PnPCoreHttpRequestsAzureActiveDirectoryOptions
Namespace: PnP.Core.Services.Builder.Configuration
Assembly: PnP.Core.dll
Syntax
public class PnPCoreHttpRequestsAzureActiveDirectoryOptions : object
Properties
DelayInSeconds
How many seconds to wait for the next retry attempt. Defaults to 3
Declaration
public int DelayInSeconds { get; set; }
Property Value
System.Int32
|
MaxRetries
When not using retry-after, how many times can a retry be made. Defaults to 10
Declaration
public int MaxRetries { get; set; }
Property Value
System.Int32
|
UseIncrementalDelay
Use an incremental strategy for the delay: each retry doubles the previous delay time. Defaults to true
Declaration
public bool UseIncrementalDelay { get; set; }
Property Value
System.Boolean
|
UseRetryAfterHeader
Use the Retry-After header for calculating the delay in case of a retry. Defaults to true
Declaration
public bool UseRetryAfterHeader { get; set; }
Property Value
System.Boolean
|