From 83ea4cd9e7bf4cebc55801edf705997c58c9df0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Hou=C5=A1ka?= Date: Tue, 23 Aug 2016 19:18:04 +0200 Subject: [PATCH] Fixed docs for RetryErrorCodes. --- SpotifyAPI/Web/SpotifyWebAPI.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/SpotifyAPI/Web/SpotifyWebAPI.cs b/SpotifyAPI/Web/SpotifyWebAPI.cs index b275bdbb..1d7f1eaa 100644 --- a/SpotifyAPI/Web/SpotifyWebAPI.cs +++ b/SpotifyAPI/Web/SpotifyWebAPI.cs @@ -60,6 +60,9 @@ namespace SpotifyAPI.Web /// public int RetryTimes { get; set; } = 10; + /// + /// Error codes that will trigger auto-retry if is enabled. + /// public IEnumerable RetryErrorCodes { get; private set; } = new int[] { 500, 502, 503 }; #endregion Configuration