H.Pipes 2.0.47

.NET 6.0 .NET Standard 2.0 .NET Framework 4.6.2
dotnet add package H.Pipes --version 2.0.47
NuGet\Install-Package H.Pipes -Version 2.0.47
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="H.Pipes" Version="2.0.47" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add H.Pipes --version 2.0.47
#r "nuget: H.Pipes, 2.0.47"
#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 H.Pipes as a Cake Addin
#addin nuget:?package=H.Pipes&version=2.0.47

// Install H.Pipes as a Cake Tool
#tool nuget:?package=H.Pipes&version=2.0.47

Async Named Pipe Wrapper for .NET Standard 2.0

Language License Requirements Build Status

A simple, easy to use, strongly-typed, async wrapper around .NET named pipes.

Features

  • Create named pipe servers that can handle multiple client connections simultaneously.
  • Send strongly-typed messages between clients and servers: any serializable .NET object can be sent over a pipe and will be automatically serialized/deserialized, including cyclical references and complex object graphs.
  • Async
  • Requires .NET Standard 2.0
  • Supports large messages - up to 300 MiB.
  • Server restart automatically
  • Automatically wait for the release of the pipe for the server, if it is already in use
  • Automatically waiting for a server pipe creating when client connecting
  • Automatic reconnect with a given interval and at each client.WriteAsync, if necessary
  • Supports variable formatters, default - BinaryFormatter which uses System.Runtime.Serialization.BinaryFormatter inside
  • Also available ready formatters in separate nuget packages: H.Formatters.Newtonsoft.Json, H.Formatters.System.Text.Json and H.Formatters.Ceras
  • Supports PipeAccessRule's(see H.Pipes.AccessControl nuget package) or more complex code to access using the PipeServer.PipeStreamInitializeAction property

Nuget

NuGet NuGet NuGet NuGet NuGet

// All clients and servers that do not need support AccessControl.
Install-Package H.Pipes

// Servers that need support AccessControl.
Install-Package H.Pipes.AccessControl

// If you want to transfer any data that can be serialized/deserialized in json using Newtonsoft.Json.
Install-Package H.Formatters.Newtonsoft.Json

// If you want to transfer any data that can be serialized/deserialized in json using System.Text.Json.
Install-Package H.Formatters.System.Text.Json

// If you want to transfer any data that can be serialized/deserialized in binary using Ceras.
Install-Package H.Formatters.Ceras

Usage

Server:

await using var server = new PipeServer<MyMessage>(pipeName);
server.ClientConnected += async (o, args) =>
{
    Console.WriteLine($"Client {args.Connection.PipeName} is now connected!");

    await args.Connection.WriteAsync(new MyMessage
    {
        Text = "Welcome!"
    });
};
server.ClientDisconnected += (o, args) =>
{
    Console.WriteLine($"Client {args.Connection.PipeName} disconnected");
};
server.MessageReceived += (sender, args) =>
{
    Console.WriteLine($"Client {args.Connection.PipeName} says: {args.Message}");
};
server.ExceptionOccurred += (o, args) => OnExceptionOccurred(args.Exception);

await server.StartAsync();

await Task.Delay(Timeout.InfiniteTimeSpan);

Client:

await using var client = new PipeClient<MyMessage>(pipeName);
client.MessageReceived += (o, args) => Console.WriteLine("MessageReceived: " + args.Message);
client.Disconnected += (o, args) => Console.WriteLine("Disconnected from server");
client.Connected += (o, args) => Console.WriteLine("Connected to server");
client.ExceptionOccurred += (o, args) => OnExceptionOccurred(args.Exception);

await client.ConnectAsync();

await client.WriteAsync(new MyMessage
{
    Text = "Hello!",
});

await Task.Delay(Timeout.InfiniteTimeSpan);

Notes:

  • To use the server inside the WinForms/WPF/Other UI application, use Task.Run() or any alternative.
  • Be careful and call Dispose before closing the program/after the end of use. Pipes are system resources and you might have problems restarting the server if you don't properly clean up the resources.

Custom Formatters

Since BinaryFormatter is used by default, you should check out this article: https://docs.microsoft.com/en-us/dotnet/standard/serialization/binaryformatter-security-guide

Install-Package H.Formatters.Newtonsoft.Json
Install-Package H.Formatters.System.Text.Json
Install-Package H.Formatters.Ceras
using H.Formatters;

await using var server = new PipeServer<MyMessage>(pipeName, formatter: new NewtonsoftJsonFormatter());
await using var client = new PipeClient<MyMessage>(pipeName, formatter: new NewtonsoftJsonFormatter());

Access Control

⚠️ Note: this is only available for the Windows platform

Install-Package H.Pipes.AccessControl
using System.IO.Pipes;
using H.Pipes.AccessControl;

await using var server = new PipeServer<string>(pipeName);

// You can set PipeSecurity
var pipeSecurity = new PipeSecurity();
pipeSecurity.AddAccessRule(new PipeAccessRule(new SecurityIdentifier(WellKnownSidType.BuiltinUsersSid, null), PipeAccessRights.ReadWrite, AccessControlType.Allow));

server.SetPipeSecurity(pipeSecurity);

// or just add AccessRule's (Please be careful, the server will only consider AccessRules from the last call AddAccessRules())
server.AddAccessRules(new PipeAccessRule(new SecurityIdentifier(WellKnownSidType.BuiltinUsersSid, null), PipeAccessRights.ReadWrite, AccessControlType.Allow));

// or just
server.AllowUsersReadWrite();

Encryption

⚠️ Note: this is only available for the Windows platform

Install-Package H.Formatters.Inferno
using H.Formatters;

await using var server = new PipeServer<MyMessage>(pipeName, formatter: new SystemTextJsonFormatter());
server.EnableEncryption();

await using var client = new PipeClient<MyMessage>(pipeName, formatter: new SystemTextJsonFormatter());
client.EnableEncryption();

await client.ConnectAsync(source.Token).ConfigureAwait(false);
// Waits for key exchange.
await client.Connection!.WaitExchangeAsync();

server.ClientConnected += async (_, args) =>
{
    // Waits for key exchange.
    await args.Connection.WaitExchangeAsync();

    await args.Connection.WriteAsync(new MyMessage
    {
        Text = "Welcome!"
    }, source.Token).ConfigureAwait(false);
};

GetImpersonationUserName

server.ClientConnected += async (o, args) =>
{
    var name = args.Connection.GetImpersonationUserName();

    Console.WriteLine($"Client {name} is now connected!");
};

Inter-process communication

I recommend that you take a look at my other library if you plan on doing IPC. This is a SourceGenerator that will generate client and server code based on the presented interface.

Contacts

Product Versions
.NET net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows
.NET Core netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1
.NET Standard netstandard2.0 netstandard2.1
.NET Framework net461 net462 net463 net47 net471 net472 net48 net481
MonoAndroid monoandroid
MonoMac monomac
MonoTouch monotouch
Tizen tizen40 tizen60
Xamarin.iOS xamarinios
Xamarin.Mac xamarinmac
Xamarin.TVOS xamarintvos
Xamarin.WatchOS xamarinwatchos
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (6)

Showing the top 5 NuGet packages that depend on H.Pipes:

Package Downloads
H.Pipes.AccessControl

This package adds AccessControl extensions for PipeServerSetPipeSecurity()

H.ProxyFactory.Pipes

Features: - Create proxy objects that look exactly like the original objects - Proxy target can be located anywhere where there is access to pipes ⭐ Last 10 features: - feat: Updated NuGet packages. 2022-01-19 - feat: Added ContinuousIntegrationBuild. 2021-11-29 - feat: Added separate H.ProxyFactory.Remote library. 2021-11-29 - feat: Added separate H.Ipc.Core library. Refactored. 2021-11-29 - feat: Added RemoteProxyServer.ObjectCreated event. 2021-11-28 - feat: Implemented safe CreateObjectAsync. 2021-10-30 - feat: Added try catch to example app. 2021-10-30 - feat: Added CLSCompliant(true). 2021-10-30 - feat: to auto-releases. 2021-10-29 - feat: Implemented example WPF app. 2021-10-29 🐞 Last 10 bug fixes: - fix(test): Removed H.Recorders.NAudioRecorder package from tests. 2022-01-19 - fix: Renamed H.Ipc.Messages to H.ProxyFactory.Remote.Messages. 2021-11-30 - fix: Changed CI build to windows-latest. 2021-10-30 - fix: Added Factory.LoadAssemblyAsync to example app. 2021-10-30 - fix: Fixed H.ProxyFactory.Pipes warnings. 2021-10-30 - fix: Fixed H.ProxyFactory warnings. 2021-10-30

H.Formatters.Inferno

This package adds InfernoFormatter(based on Inferno). It allows encrypt your messages.

H.Utilities.PipeProxyFactory

Features: - Create proxy objects that look exactly like the original objects - Proxy target can be located anywhere where there is access to pipes

Ax.Fw.PipeBus

PipeBus - Observable message broker for interprocess communications

GitHub repositories (2)

Showing the top 2 popular GitHub repositories that depend on H.Pipes:

Repository Stars
mgth/LittleBigMouse
DPI Aware mouse move across screens
MythicAgents/Athena
Version Downloads Last updated
2.0.47 1,370 2/27/2023
2.0.46 169 2/26/2023
2.0.45 1,839 2/2/2023
2.0.44 2,978 1/10/2023
2.0.43 927 1/5/2023
2.0.42 8,337 9/14/2022
2.0.41 1,195 9/9/2022
2.0.40 1,345 8/26/2022
2.0.39 598 8/26/2022
2.0.38 8,695 6/2/2022
2.0.37 2,807 4/21/2022
2.0.35 20,725 3/17/2022
2.0.34 753 3/12/2022
2.0.33 664 3/12/2022
2.0.32 661 3/12/2022
2.0.31 1,296 3/11/2022
2.0.30 659 3/11/2022
2.0.29 655 3/11/2022
2.0.26 736 3/7/2022
2.0.25 651 3/6/2022
2.0.23 5,258 12/21/2021
2.0.22 332 12/21/2021
2.0.21 387 12/20/2021
2.0.20 332 12/20/2021
2.0.19 348 12/20/2021
2.0.18 339 12/20/2021
2.0.17 325 12/20/2021
2.0.16 336 12/20/2021
2.0.15 276 12/20/2021
2.0.14 1,171 12/5/2021
2.0.13 286 12/5/2021
1.15.12 327 12/5/2021
1.15.11 1,032 11/29/2021
1.15.10 3,414 11/25/2021
1.15.9 2,413 11/25/2021
1.15.8 2,661 11/25/2021
1.15.7 2,546 11/25/2021
1.15.6 3,778 11/24/2021
1.15.4 5,765 11/24/2021
1.15.2 918 10/22/2021
1.15.1 326 10/22/2021
1.14.8 6,303 1/4/2021
1.14.7 2,571 12/15/2020
1.14.6 6,496 12/9/2020
1.14.5 405 12/9/2020
1.14.4 2,004 11/22/2020
1.14.2 440 11/22/2020
1.14.1 1,778 10/8/2020
1.14.0 491 10/8/2020
1.13.4 528 10/8/2020
1.13.1 688 7/5/2020
1.13.0 687 5/20/2020
1.12.3 700 2/2/2020
1.12.2 1,343 2/1/2020
1.12.1 542 2/1/2020
1.0.12 1,515 1/29/2020
1.0.11 709 1/28/2020
1.0.10 499 1/28/2020
1.0.9 578 1/14/2020
1.0.8 498 1/14/2020
1.0.7 737 1/12/2020
1.0.6.1 577 1/11/2020
1.0.6 635 1/10/2020
1.0.5 441 1/10/2020
1.0.4 434 1/10/2020
1.0.3 497 1/10/2020
1.0.2.3 456 1/9/2020
1.0.2.2 459 1/9/2020
1.0.2.1 450 1/9/2020
1.0.2 447 1/8/2020
1.0.1 455 1/8/2020
1.0.0 436 1/7/2020

⭐ Last 10 features:
- feat: Added PipeApplication.StartAsync(args). 2023-02-27
- feat: Added IPipeClient.CreatePipeStreamFunc. Closes #29. 2023-02-02
- feat: Added ability to set up CerasFormatter.InternalFormatter. 2023-01-10
- feat: To net7.0. Updated NuGet packages. 2023-01-05
- feat: Updated H.Pipes.AccessControl to use official net5/net6 PipeSecurity implementation. 2022-09-09
- feat: Added BinaryFormatter.InternalFormatter as public property. 2022-03-18
- feat(AccessControl): Enabled PipeApplication.StartAsync for non-windows system without AllowUsersReadWrite. 2022-03-12
- feat(Inferno): Added net5/net6 targets. Added SupportedOSPlatform attributes. 2022-03-12
- feat(Inferno): Added EnableEncryption optional exception action. 2022-03-12
- feat(AccessControl): Added SupportedOSPlatform attribute to SetPipeSecurity. 2022-03-11

🐞 Last 10 bug fixes:
- fix: Now EventExtensions is internal class. 2023-02-26
- fix: Fixed Connection.Disconnected unhandled exception bug. 2022-09-14
- fix: Fixed SemaphoreSlim usage. Fixes #24. 2022-08-26
- fix: Fixes #24. 2022-08-26
- fix: Added IOException ignoring for FlushAsync/WaitForPipeDrain. 2022-06-02
- fix: Fixed missing PipeStreamReader read check. Refactored. 2022-04-21
- fix(AccessControl): Fixed NET461 library to use Net Framework NamedPipeServerStream ctor. 2022-03-11
- fix: Fixed ValidatePublicKey. 2022-03-07
- fix: Fixed PipeClient.Connection set access. 2021-12-21
- fix: Fixed problem with multiple server encrypted connections. 2021-12-20