![]() |
VOOZH | about |
dotnet add package QuickProxyNet --version 3.0.0
NuGet\Install-Package QuickProxyNet -Version 3.0.0
<PackageReference Include="QuickProxyNet" Version="3.0.0" />
<PackageVersion Include="QuickProxyNet" Version="3.0.0" />Directory.Packages.props
<PackageReference Include="QuickProxyNet" />Project file
paket add QuickProxyNet --version 3.0.0
#r "nuget: QuickProxyNet, 3.0.0"
#:package QuickProxyNet@3.0.0
#addin nuget:?package=QuickProxyNet&version=3.0.0Install as a Cake Addin
#tool nuget:?package=QuickProxyNet&version=3.0.0Install as a Cake Tool
High-performance, zero-dependency C# library for connecting through HTTP, HTTPS, SOCKS4, SOCKS4a, and SOCKS5 proxies. Returns a raw Stream for direct data access.
Targets: .NET 8 / .NET 9 / .NET 10
// One-liner — ideal for mass proxy checking
await using var stream = await Proxy.ConnectAsync(
new Uri("socks5://user:pass@127.0.0.1:1080"),
"example.com", 443,
TimeSpan.FromSeconds(5));
Or via extension method:
await using var stream = await new Uri("http://proxy:8080")
.ConnectThroughProxyAsync("example.com", 443);
ArrayPool, stackalloc, Utf8Formatter, ValueTask)ProxyProtocolException with ProxyErrorCode enumProxyErrorCode.TimeoutProxy.ConnectAsync) and factory API (ProxyClientFactory)try
{
await using var stream = await Proxy.ConnectAsync(proxyUri, host, port,
TimeSpan.FromSeconds(5));
}
catch (ProxyProtocolException ex) when (ex.ErrorCode == ProxyErrorCode.Timeout)
{
// Timed out — ex.Message includes proxy and target host:port
}
catch (ProxyProtocolException ex) when (ex.ErrorCode == ProxyErrorCode.AuthFailed)
{
// Wrong credentials
}
See full documentation for all error codes and configuration options.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 is compatible. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
Showing the top 4 NuGet packages that depend on QuickProxyNet:
| Package | Downloads |
|---|---|
|
McProtoNet.Core
Ядро McProtoNet |
|
|
McProtoNet
High-performance library for working with the minecraft protocol |
|
|
McProtoNet.Abstractions
Abstractions for McProtoNet |
|
|
McProtoNet.Protocol
A library that supports multiversion |
Showing the top 1 popular GitHub repositories that depend on QuickProxyNet:
| Repository | Stars |
|---|---|
|
Titlehhhh/Minecraft-Holy-Client
A high-performance platform for running Minecraft stress-test bots written in C#.
|
| Version | Downloads | Last Updated |
|---|---|---|
| 3.0.0 | 164 | 3/8/2026 |
| 2.0.0 | 868 | 11/4/2024 |
| 2.0.0-preview.1.1.4.2 | 186 | 2/6/2024 |
| 2.0.0-preview.1.1.4 | 383 | 1/11/2024 |
| 2.0.0-preview.1.1 | 163 | 12/27/2023 |
| 0.1.4 | 499 | 10/25/2023 |
| 0.1.3 | 236 | 10/25/2023 |
| 0.1.1 | 262 | 10/25/2023 |