QuickProxyNet 2.0.0

dotnet add package QuickProxyNet --version 2.0.0                
NuGet\Install-Package QuickProxyNet -Version 2.0.0                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="QuickProxyNet" Version="2.0.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add QuickProxyNet --version 2.0.0                
#r "nuget: QuickProxyNet, 2.0.0"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install QuickProxyNet as a Cake Addin
#addin nuget:?package=QuickProxyNet&version=2.0.0

// Install QuickProxyNet as a Cake Tool
#tool nuget:?package=QuickProxyNet&version=2.0.0                

QuickProxyNet

QuickProxyNet is a high-performance .NET library for connecting to servers via various types of proxies (HTTP, HTTPS, SOCKS4, SOCKS4a, SOCKS5). It offers raw Stream access for direct data handling, making it ideal for applications needing low-level network control.

Features

  • Supports HTTP, HTTPS, SOCKS4, SOCKS4a, SOCKS5 proxies
  • High-performance and minimal latency
  • Raw Stream Access for low-level data operations
  • Customizable timeout and connection settings

Usage Example

using QuickProxyNet;
using System;
using System.Net;

// Define the proxy URI with optional credentials
Uri proxyUri = new Uri("http://username:password@proxyserver.com:8080");

// Create a proxy client
var proxyClient = ProxyClientFactory.Instance.Create(proxyUri);

// Connect through the proxy and get a raw Stream for direct data access
using (var connectionStream = await proxyClient.ConnectAsync("destinationserver.com", 80))
{
// Work directly with the Stream
}
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on QuickProxyNet:

Package Downloads
McProtoNet.Core

Ядро McProtoNet

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.0 73 11/4/2024
2.0.0-preview.1.1.4.2 82 2/6/2024
2.0.0-preview.1.1.4 258 1/11/2024
2.0.0-preview.1.1 81 12/27/2023
0.1.4 370 10/25/2023
0.1.3 133 10/25/2023
0.1.1 134 10/25/2023