Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: enhancing intellisense to provide parameter limits in the description… #1133

Merged
merged 1 commit into from
Sep 22, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/SendGrid/Reliability/ReliabilitySettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ public ReliabilitySettings()
/// <summary>
/// Initializes a new instance of the <see cref="ReliabilitySettings"/> class.
/// </summary>
/// <param name="maximumNumberOfRetries">The maximum number of retries to execute against when sending an HTTP Request before throwing an exception.</param>
/// <param name="minimumBackoff">The minimum amount of time to wait between between HTTP retries.</param>
/// <param name="maximumBackOff">the maximum amount of time to wait between between HTTP retries.</param>
/// <param name="deltaBackOff">the value that will be used to calculate a random delta in the exponential delay between retries.</param>
/// <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>
/// <param name="minimumBackoff">The minimum amount of time to wait between between HTTP retries. Default value of 0 seconds.</param>
/// <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>
/// <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>
public ReliabilitySettings(int maximumNumberOfRetries, TimeSpan minimumBackoff, TimeSpan maximumBackOff, TimeSpan deltaBackOff)
{
if (maximumNumberOfRetries < 0)
Expand Down Expand Up @@ -90,4 +90,4 @@ public ReliabilitySettings(int maximumNumberOfRetries, TimeSpan minimumBackoff,
/// </summary>
public TimeSpan DeltaBackOff { get; }
}
}
}