mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-09-19 01:34:26 -04:00
Add option to send the User-Agent header on all HTTP requests (#750)
This commit is contained in:
1 parent
8f8f30c37a
commit
41dbbf155b
38 files changed
+4878
-67
No files matched your search
@@ -0,0 +1,10 @@
|
||||
namespace Cleanuparr.Infrastructure.Http.DynamicHttpClientSystem;
|
||||
|
||||
/// <summary>
|
||||
/// Retry configuration for HTTP clients
|
||||
/// </summary>
|
||||
public class RetryConfig
|
||||
{
|
||||
public int MaxRetries { get; set; }
|
||||
public bool ExcludeUnauthorized { get; set; } = true;
|
||||
}
|
||||
Reference in new issue
Block a user