You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/SendGrid/Reliability/ReliabilitySettings.cs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -21,9 +21,9 @@ public ReliabilitySettings()
21
21
}
22
22
23
23
/// <summary>
24
-
/// Gets or sets the number of retries to execute against when sending an HTTP Request before throwing an exception. Defaults to 0 (no retries, you must explicitly enable)
24
+
/// Gets or sets the maximum number of retries to execute against when sending an HTTP Request before throwing an exception. Defaults to 0 (no retries, you must explicitly enable)
25
25
/// </summary>
26
-
publicintRetryCount
26
+
publicintMaximumNumberOfRetries
27
27
{
28
28
get
29
29
{
@@ -39,7 +39,7 @@ public int RetryCount
39
39
40
40
if(value>5)
41
41
{
42
-
thrownewArgumentException("The maximum number of retries is 5");
42
+
thrownewArgumentException("The maximum number of retries that can be attempted is 5");
0 commit comments