RetryParams Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.