Jaa


RetryParams Constructors

Definition

Overloads

RetryParams()

Initializes a new instance of the RetryParams class.

RetryParams(TimeSpan, Boolean)

Initializes a new instance of the RetryParams class.

RetryParams()

Initializes a new instance of the RetryParams class.

public RetryParams ();
Public Sub New ()

Applies to

RetryParams(TimeSpan, Boolean)

Initializes a new instance of the RetryParams class.

public RetryParams (TimeSpan retryAfter, bool shouldRetry = true);
new Microsoft.Bot.Connector.Authentication.RetryParams : TimeSpan * bool -> Microsoft.Bot.Connector.Authentication.RetryParams
Public Sub New (retryAfter As TimeSpan, Optional shouldRetry As Boolean = true)

Parameters

retryAfter
TimeSpan

Timespan to wait between retries.

shouldRetry
Boolean

Bool that indicates if a retry is required. The default is true.

Applies to