Proxy.Net
1.0.23
dotnet add package Proxy.Net --version 1.0.23
NuGet\Install-Package Proxy.Net -Version 1.0.23
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="Proxy.Net" Version="1.0.23" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Proxy.Net" Version="1.0.23" />
<PackageReference Include="Proxy.Net" />
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 Proxy.Net --version 1.0.23
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Proxy.Net, 1.0.23"
#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 Proxy.Net@1.0.23
#: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=Proxy.Net&version=1.0.23
#tool nuget:?package=Proxy.Net&version=1.0.23
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Proxy.Net
Simple .NET 8 TCP reverse proxy library.
Features
- Asynchronous, high-performance TCP proxying
- Bidirectional communication
- Easy to use API
- Graceful shutdown and resource cleanup
Installation
Install via NuGet:
dotnet add package Proxy.Net
Usage Examples
Basic Example
using Proxy.Net;
using System;
using System.Threading.Tasks;
class Program
{
static async Task Main(string[] args)
{
int localPort = 8888;
string remoteHost = "example.com";
int remotePort = 80;
// Parse command-line arguments if provided
if (args.Length >= 3)
{
localPort = int.Parse(args[0]);
remoteHost = args[1];
remotePort = int.Parse(args[2]);
}
Console.WriteLine($"Starting proxy: localhost:{localPort} → {remoteHost}:{remotePort}");
var proxy = new TcpReverseProxy(localPort, remoteHost, remotePort);
// Handle Ctrl+C to gracefully shut down
Console.CancelKeyPress += async (s, e) =>
{
e.Cancel = true;
Console.WriteLine("Shutting down proxy...");
await proxy.StopAsync();
Environment.Exit(0);
};
try
{
proxy.Start();
Console.WriteLine("Proxy started successfully. Press Ctrl+C to exit.");
// Keep the application running
await Task.Delay(-1);
}
catch (Exception ex)
{
Console.WriteLine($"Error: {ex.Message}");
}
}
}
Common Use Cases
- Forward local development traffic to production or staging environments
- Create TCP tunnels through firewalls
- Load balance TCP connections
- Monitor network traffic between services
- Testing network applications
- Avoiding cross-origin resource sharing (CORS) issues in web development
License
MIT
Contributing
Contributions are welcome! Feel free to submit issues and pull requests.
Product | Versions 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 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.