Skip to content
This repository was archived by the owner on Jun 14, 2020. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/SocksSharp/ProxyClientHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace SocksSharp
/// to provide the <see cref="HttpClient"/> support for <see cref="IProxy"/> proxy type
/// </summary>
/// <typeparam name="T"></typeparam>
public class ProxyClientHandler<T> : HttpMessageHandler, IDisposable where T : IProxy
public class ProxyClientHandler<T> : DelegatingHandler, IDisposable where T : IProxy
{
private readonly IProxyClient<T> proxyClient;

Expand Down