Skip to content

Commit 33bcb5d

Browse files
jmounts234jmounts
andauthored
docs: enhancing intellisense to provide parameter limits in the description… (#1133)
Co-authored-by: jmounts <[email protected]>
1 parent f79fd10 commit 33bcb5d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/SendGrid/Reliability/ReliabilitySettings.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ public ReliabilitySettings()
2323
/// <summary>
2424
/// Initializes a new instance of the <see cref="ReliabilitySettings"/> class.
2525
/// </summary>
26-
/// <param name="maximumNumberOfRetries">The maximum number of retries to execute against when sending an HTTP Request before throwing an exception.</param>
27-
/// <param name="minimumBackoff">The minimum amount of time to wait between between HTTP retries.</param>
28-
/// <param name="maximumBackOff">the maximum amount of time to wait between between HTTP retries.</param>
29-
/// <param name="deltaBackOff">the value that will be used to calculate a random delta in the exponential delay between retries.</param>
26+
/// <param name="maximumNumberOfRetries">The maximum number of retries to execute against when sending an HTTP Request before throwing an exception. Max value of 5. Default value of 0.</param>
27+
/// <param name="minimumBackoff">The minimum amount of time to wait between between HTTP retries. Default value of 0 seconds.</param>
28+
/// <param name="maximumBackOff" max="30 seconds">the maximum amount of time to wait between between HTTP retries. Max value of 30 seconds. Default value of 0 seconds.</param>
29+
/// <param name="deltaBackOff">the value that will be used to calculate a random delta in the exponential delay between retries. Default value of 0 seconds.</param>
3030
public ReliabilitySettings(int maximumNumberOfRetries, TimeSpan minimumBackoff, TimeSpan maximumBackOff, TimeSpan deltaBackOff)
3131
{
3232
if (maximumNumberOfRetries < 0)
@@ -90,4 +90,4 @@ public ReliabilitySettings(int maximumNumberOfRetries, TimeSpan minimumBackoff,
9090
/// </summary>
9191
public TimeSpan DeltaBackOff { get; }
9292
}
93-
}
93+
}

0 commit comments

Comments
 (0)