NetLink 0.0.7

dotnet add package NetLink --version 0.0.7
                    
NuGet\Install-Package NetLink -Version 0.0.7
                    
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="NetLink" Version="0.0.7" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="NetLink" Version="0.0.7" />
                    
Directory.Packages.props
<PackageReference Include="NetLink" />
                    
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 NetLink --version 0.0.7
                    
#r "nuget: NetLink, 0.0.7"
                    
#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 NetLink@0.0.7
                    
#: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=NetLink&version=0.0.7
                    
Install as a Cake Addin
#tool nuget:?package=NetLink&version=0.0.7
                    
Install as a Cake Tool

NetLink Client-Server Helper Library for .Net/C#.

Description

A helper library to establish client-server links of over different transports (tcp-sockets/named-pipes/web-sockets/...).

NetLink is a simple way to establish a network link between a server and client(s), and have commands and queries be sent asynchronously between both. This can be used for simple IPC, or to manage remote connections.

Features

  • Simple integration
  • Connection-based links
  • Commands and Queries
  • Bi-directional, asynchronous
  • Strings, headers and byte array payloads
  • Works over TCP Sockets, WebSockets or Named Pipes
  • link-level Compression
  • link-level Encryption and/or Validation (using X509 Certificates)
  • Clients in C#, C++, Python and Javascript

Nuget

The nuget package can be found at: https://www.nuget.org/packages/NetLink

Examples

The following examples can be found in https://github.com/gitdonohue/NetLink/blob/develop/Examples.

Client Examples

A client link can be created via the NetLinkSocket, NetLinkNamedPipe or NetLinkWebsocket classes, to connect to a server. For example:

INetLink netlinkCLient = new NetLinkSocket(server: "localhost", port: 4445);

In order to handle events, CommandHandler and QueryHandler event handlers can be bound:

netlinkCLient.CommandHandler = async (INetLink link, NetMessage command, CancellationToken ct) =>
{
    Console.WriteLine($"Client Processing command: {command.GetCommand()}");
    await Task.Delay(100, ct); // some work here...
};

netlinkCLient.QueryHandler = async (INetLink link, NetMessage query, CancellationToken ct) =>
{
    await Task.Delay(100, ct); // some work here...
    var resp = link.CreateResponse(query, true, "Client OK");
    return resp;
};

The SendCommand() and SendQuery() methods can be used to send to the server. For example:

await netlinkCLient.SendCommand(netlinkCLient.CreateCommand("clientToServerCommand"), ct);

var serverResponse = await netlinkCLient.SendQuery(netlinkCLient.CreateQuery("clientToServerQuery").AddHeader("headerName","headerValue"), ct);
Console.WriteLine($"Server response: {serverResponse.GetResponse()}");

Server Examples

A server endpoint can be created using the NetLinkSocketServer, NetLinkWebsocketServer or NetLinkNamedPipeServer classes, for example:

var netLinkServer = new NetLinkSocketServer(port: 4444, server: "auto");

The server could accept connections using several methods by using the NetLinkAggregateServer class, for example:

var netLinkServer = new NetLinkAggregateServer(new List<INetLinkServer>()
{
    new NetLinkSocketServer(port: 4444, server: "auto"),
    new NetLinkSocketServer(port: 4445, server: "localhost") { AllowEncryption = false },
    new NetLinkSocketServer(port: 4446, server: "127.0.0.1") { AllowEncryption = false },
    new NetLinkNamedPipeServer(pipeName: @"Netlink\NetlinkNamedPipeServerExample"),
    new NetLinkWebsocketServer(port: 5555, server: "localhost")
});

In order to handle events, the LinkEstablished, LinkTerminated, CommandHandler and QueryHandler event handlers can be bound:

netLinkServer.LinkEstablished += (link) => Console.WriteLine($"client->server link established: {link}");
netLinkServer.LinkTerminated += (link) => Console.WriteLine($"client->server link terminated: {link}");

netLinkServer.CommandHandler = async (INetLink link, NetMessage command, CancellationToken ct) =>
{
    Console.WriteLine($"Server Processing command: {command.GetCommand()}");
    await Task.Delay(100, ct); // some work here...
};

netLinkServer.QueryHandler = async (INetLink link, NetMessage query, CancellationToken ct) =>
{
    Console.WriteLine($"Server Processing query: {query.GetQuery()}");

    await Task.Delay(100, ct); // some work here...
    //string queryName = query.GetQuery();

    var resp = link.CreateResponse(query, true, "Server OK");
    return resp;
};

Then, all you need to do start handling connection is:

await netLinkServer.Run(ct); // Listen for incoming connections

Just like on the clients, the SendCommand() and SendQuery() methods can be used to send to a client link.

The list of active connections can be iterated through using the GetLinks() method, for broadcating. For example:

foreach (var clientLink in netLinkServer.GetLinks())
{
    await clientLink.SendCommand(clientLink.CreateCommand("serverToClientCommand"), ct);

    var clientRepsonse = await clientLink.SendQuery(clientLink.CreateQuery("ServerToClientQuery").AddHeader("headerName", "headerValue"), ct);
    Console.WriteLine($"Client response: {clientRepsonse.GetResponse()}");
}

Web Client Example

A browser can attach to a local WebSocket endpoint, as show in the following example. See NetlinkWebsocketTest.html (uses Netlink.js).

<img width="995" alt="image" src="https://github.com/gitdonohue/NetLink/assets/44268295/4934f6e8-90d2-4584-9429-ea3bcd46db50">

Note: Encryption not supported, to be used on localhost or VPN/LAN only.

C++ Client Example

See NetLinkSocketClient.hpp / NetLinkSocketClient.cpp

Example pending

Encryption

In order to enable encrytion over the links, you have to install a certificate on the server. The default name for this certificate would be NetLinkServer, but this name cand be changed by setting ServerCertificateName on the server. The server and client can check the IsEncrypted property and act accordingly.

If you want to validate the clients, you can also install a certificate on the client(s). The default name for this certificate would be NetLinkClient, but this name cand be changed by setting ClientCertificateName on the server. The server can then check the IsVerified flag on messages and act accordingly. Warning: This has not been thoroughly tested.

To create a certificate which includes a private key:

openssl req -x509 -newkey rsa:2048 -keyout key.pem -out cert.pem -sha256 -days 900 -nodes
openssl pkcs12 -inkey key.pem -in cert.pem -export -out installable_cert.pfx

Or https://certificatetools.com/

To disable encryption, you can set the AllowEncryption property to false on the server.

Caveat Emptor

This package is meant to be a time-saver, easy to use, client-server library, for IPC or LAN use. It is not meant as a robust, secure, highly scalable or performant system for a large number of connections. It's used in production, but there are currently no unit tests to safeguard from regressions. If anyone is interested in pursuing the idea of establishing a testing framework for this library, please feel free to contect me.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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.
  • net6.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.

Version Downloads Last Updated
0.0.7 73 7/18/2025
0.0.6 171 4/8/2024
0.0.5 171 10/9/2023
0.0.4 202 7/8/2023
0.0.3 180 5/16/2023
0.0.2 321 1/29/2023
0.0.1 308 1/27/2023