다음을 통해 공유


RetryPolicy Constructors

Definition

Overloads

RetryPolicy()

Initializes a new instance of the RetryPolicy class.

RetryPolicy(Object, Nullable<Int32>)

Initializes a new instance of the RetryPolicy class.

RetryPolicy()

Initializes a new instance of the RetryPolicy class.

public RetryPolicy ();
Public Sub New ()

Applies to

RetryPolicy(Object, Nullable<Int32>)

Initializes a new instance of the RetryPolicy class.

public RetryPolicy (object count = default, int? intervalInSeconds = default);
new Microsoft.Azure.Management.DataFactory.Models.RetryPolicy : obj * Nullable<int> -> Microsoft.Azure.Management.DataFactory.Models.RetryPolicy
Public Sub New (Optional count As Object = Nothing, Optional intervalInSeconds As Nullable(Of Integer) = Nothing)

Parameters

count
Object

Maximum ordinary retry attempts. Default is 0. Type: integer (or Expression with resultType integer), minimum: 0.

intervalInSeconds
Nullable<Int32>

Interval between retries in seconds. Default is 30.

Applies to