Fixed docs for RetryErrorCodes.

This commit is contained in:
Petr Houška 2016-08-23 19:18:04 +02:00
parent 9952f3e939
commit 83ea4cd9e7

View File

@ -60,6 +60,9 @@ namespace SpotifyAPI.Web
/// </summary> /// </summary>
public int RetryTimes { get; set; } = 10; public int RetryTimes { get; set; } = 10;
/// <summary>
/// Error codes that will trigger auto-retry if <see cref="UseAutoRetry"/> is enabled.
/// </summary>
public IEnumerable<int> RetryErrorCodes { get; private set; } = new int[] { 500, 502, 503 }; public IEnumerable<int> RetryErrorCodes { get; private set; } = new int[] { 500, 502, 503 };
#endregion Configuration #endregion Configuration