Musoft.Proxy.WinForms 1.0.8

dotnet add package Musoft.Proxy.WinForms --version 1.0.8
                    
NuGet\Install-Package Musoft.Proxy.WinForms -Version 1.0.8
                    
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="Musoft.Proxy.WinForms" Version="1.0.8" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Musoft.Proxy.WinForms" Version="1.0.8" />
                    
Directory.Packages.props
<PackageReference Include="Musoft.Proxy.WinForms" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Musoft.Proxy.WinForms --version 1.0.8
                    
#r "nuget: Musoft.Proxy.WinForms, 1.0.8"
                    
#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.
#:package Musoft.Proxy.WinForms@1.0.8
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Musoft.Proxy.WinForms&version=1.0.8
                    
Install as a Cake Addin
#tool nuget:?package=Musoft.Proxy.WinForms&version=1.0.8
                    
Install as a Cake Tool

Musoft.Proxy (ProxyForge) 🚀

NuGet Version License: MIT .NET Supported

Ultimate Proxy Manager - Rotation, Health Checker, Free Scraper, Ban Detector & WinForms Control for .NET.
Supports HTTP, SOCKS5, intelligent bulk import, parallel auto-checker, ban detection, free proxy scrapers, thread-safe rotation strategies (Round-Robin, Random, Least Latency, Sticky Session), Selenium & HttpClient integration, and a ready-to-use drop-in WinForms UserControl / Form.


📦 NuGet Packages

Package Description NuGet
Musoft.Proxy Core library: rotation strategies, health checks, ban detector, proxy parser, free scraper, judges NuGet
Musoft.Proxy.Extensions Integration extensions for HttpClient, SocketsHttpHandler, and Selenium ChromeOptions NuGet
Musoft.Proxy.WinForms WinForms UserControl & Form with grid UI, import/export, and health check dashboard NuGet

⚡ Installation

Install via dotnet CLI:

# Core Proxy Management Library
dotnet add package Musoft.Proxy

# Extensions for Selenium & HttpClient
dotnet add package Musoft.Proxy.Extensions

# Complete WinForms UI Control
dotnet add package Musoft.Proxy.WinForms

Or via Package Manager Console in Visual Studio:

Install-Package Musoft.Proxy
Install-Package Musoft.Proxy.Extensions
Install-Package Musoft.Proxy.WinForms

🔥 Key Features

  • Zero-Config Core & Drop-in WinForms UI: Add Musoft.Proxy to any .NET project or drop ProxyManagerControl directly into Visual Studio Toolbox.
  • 🌐 HTTP & SOCKS5 Support: Seamless handling of HTTP, HTTPS, and SOCKS5 proxies (with authentication).
  • 🧠 Smart Proxy Parser: Universal format recognition (host:port, host:port:user:pass, user:pass@host:port, http://..., socks5://...). Automatically strips inline/block comments (#, //) and whitespace.
  • 🔄 Advanced Rotation Strategies: Round-Robin, Random, Least Latency, and Sticky Session strategies built for high-concurrency multi-threaded apps.
  • 🚀 Parallel Health Checker & Latency Test: High-performance async non-blocking proxy validator with progress reporting.
  • 🛡️ Ban Detector & Proxy Judge: Detect rate-limits, IP bans, HTTP status codes, block pages, and judge proxy header leaks.
  • 🌐 Free Proxy Scraper: Built-in scraper for gathering public proxies automatically.
  • 🔌 HttpClient & Selenium Extensions: Effortless integration with standard .NET HttpClient and Selenium WebDriver.
  • 🧩 Multi-Targeting: .NET Framework 4.6.2, .NET Standard 2.0, .NET 6.0, .NET 8.0 (and WinForms targets).

💻 Code Examples & Quick Start

1. Basic Proxy Rotation & Management (Musoft.Proxy)

using ProxyForge.Core;

// Create pool and add proxies
var pool = new ProxyPool(RotationMode.RoundRobin);
pool.Add(new ProxyInfo("192.168.1.1", 8080, ProxyType.HTTP));
pool.Add(new ProxyInfo("192.168.1.2", 8080, ProxyType.SOCKS5, "user", "pass"));

// Retrieve next rotated proxy
ProxyInfo proxy = pool.GetNext();
Console.WriteLine($"Using proxy: {proxy.Host}:{proxy.Port}");

2. Intelligent Bulk Parsing

using ProxyForge.Core;

string rawInput = @"
    # Bulk Proxies List
    192.168.1.1:8080
    192.168.1.2:8080:admin:secret123
    user:pass@192.168.1.3:8080
    socks5://10.0.0.1:1080
    socks5://admin:secret@10.0.0.2:1080 // inline comments supported
";

List<ProxyInfo> proxies = ProxyParser.Parse(rawInput, ProxyType.HTTP);

3. HttpClient & Rotated Request (Musoft.Proxy.Extensions)

using System.Net.Http;
using ProxyForge.Core;
using ProxyForge.Extensions;

var manager = new ProxyManager();
manager.AddRange(proxies);

// Auto-create HttpClient with rotated proxy handler
using var client = manager.CreateHttpClient();
string ip = await client.GetStringAsync("https://api.ipify.org?format=json");

4. Selenium Integration (Musoft.Proxy.Extensions)

using OpenQA.Selenium.Chrome;
using ProxyForge.Core;
using ProxyForge.Extensions;

var options = new ChromeOptions();
var proxy = new ProxyInfo("192.168.1.1", 8080, ProxyType.HTTP, "user", "pass");

options.ApplyProxy(proxy);

5. WinForms Drop-in Control (Musoft.Proxy.WinForms)

Drag ProxyManagerControl onto your Visual Studio Form, or use programmatically:

using ProxyForge.WinForms;

public partial class MainForm : Form
{
    public MainForm()
    {
        InitializeComponent();
        
        proxyControl.Manager.DefaultType = ProxyType.HTTP;
        proxyControl.Manager.Rotation = RotationMode.RoundRobin;
    }
}

🛠️ Solution Architecture

/src/ProxyForge.Core/       # Core Engine (Musoft.Proxy - Parsing, Rotation, Health, Scraper)
/src/ProxyForge.Extensions/ # Integration Extensions (Musoft.Proxy.Extensions - HttpClient & Selenium)
/src/ProxyForge.WinForms/   # WinForms UI Control (Musoft.Proxy.WinForms - UserControl & Form)
/demo/DemoApp/              # Executable WinForms Demo Application

📄 License

Distributed under the MIT License. See LICENSE for details.

Product Compatible and additional computed target framework versions.
.NET net6.0-windows7.0 is compatible.  net7.0-windows was computed.  net8.0-windows was computed.  net8.0-windows7.0 is compatible.  net9.0-windows was computed.  net10.0-windows was computed. 
.NET Framework net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.8 105 8/9/2026
1.0.7 76 8/9/2026
1.0.6 77 8/9/2026
1.0.5 87 8/9/2026
1.0.4 92 8/9/2026
1.0.0 95 8/9/2026