|
|
|
@ -12,11 +12,14 @@ public class AbpHttpClientBuilderOptions |
|
|
|
internal HashSet<string> ConfiguredProxyClients { get; } |
|
|
|
|
|
|
|
public List<Action<string, IServiceProvider, HttpClient>> ProxyClientActions { get; } |
|
|
|
|
|
|
|
public List<Action<string, IServiceProvider, HttpClientHandler>> ProxyClientHandlerActions { get; } |
|
|
|
|
|
|
|
public AbpHttpClientBuilderOptions() |
|
|
|
{ |
|
|
|
ProxyClientBuildActions = new List<Action<string, IHttpClientBuilder>>(); |
|
|
|
ConfiguredProxyClients = new HashSet<string>(); |
|
|
|
ProxyClientActions = new List<Action<string, IServiceProvider, HttpClient>>(); |
|
|
|
ProxyClientHandlerActions = new List<Action<string, IServiceProvider, HttpClientHandler>>(); |
|
|
|
} |
|
|
|
} |
|
|
|
|