H.Pipes 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package H.Pipes --version 1.0.0
NuGet\Install-Package H.Pipes -Version 1.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="H.Pipes" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add H.Pipes --version 1.0.0
#r "nuget: H.Pipes, 1.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 H.Pipes as a Cake Addin
#addin nuget:?package=H.Pipes&version=1.0.0

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

Async Named Pipe Wrapper for .NET Standard 2.0

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

NuGet Package

Available as a NuGet package.

Install-Package H.Pipes -Version 1.0.0

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
  • Supports large messages - up to 300 MiB.

Requirements

Requires .NET Standard 2.0.

Usage

Server:

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

    await args.Connection.WriteAsync(new MyMessage
    {
        Id = new Random().Next(),
        Text = "Welcome!"
    });
};
server.ClientDisconnected += (o, args) =>
{
    Console.WriteLine($"Client {args.Connection.Id} disconnected");
};
server.MessageReceived += (sender, args) =>
{
    Console.WriteLine($"Client {args.Connection.Id} 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
{
    Id = new Random().Next(),
    Text = "Hello!",
});

await Task.Delay(Timeout.InfiniteTimeSpan);
// ...

MIT License

H.Pipes is licensed under the MIT license.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (8)

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

Package Downloads
H.Pipes.AccessControl

This package adds AccessControl extensions for PipeServerSetPipeSecurity()

H.Formatters.Inferno

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

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.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
ad2017gd/RainbowTaskbar
Powerful, customizable Windows 10/11 taskbar effects.
Version Downloads Last updated
2.1.0-dev.322 98 1/20/2024
2.1.0-dev.318 122 12/18/2023
2.0.59 22,370 12/8/2023
2.0.56 2,038 11/27/2023
2.0.53 19,052 7/24/2023
2.0.51 9,926 5/25/2023
2.0.47 14,358 2/27/2023
2.0.46 912 2/26/2023
2.0.45 6,374 2/2/2023
2.0.44 8,685 1/10/2023
2.0.43 1,864 1/5/2023
2.0.42 25,357 9/14/2022
2.0.41 1,920 9/9/2022
2.0.40 3,021 8/26/2022
2.0.39 1,363 8/26/2022
2.0.38 11,193 6/2/2022
2.0.37 3,698 4/21/2022
2.0.35 51,685 3/17/2022
2.0.34 1,508 3/12/2022
2.0.33 1,429 3/12/2022
2.0.32 1,374 3/12/2022
2.0.31 2,280 3/11/2022
2.0.30 1,417 3/11/2022
2.0.29 1,405 3/11/2022
2.0.26 1,458 3/7/2022
2.0.25 1,388 3/6/2022
2.0.23 9,351 12/21/2021
2.0.22 925 12/21/2021
2.0.21 3,056 12/20/2021
2.0.20 939 12/20/2021
2.0.19 1,009 12/20/2021
2.0.18 1,031 12/20/2021
2.0.17 950 12/20/2021
2.0.16 929 12/20/2021
2.0.15 868 12/20/2021
2.0.14 2,148 12/5/2021
2.0.13 868 12/5/2021
1.15.12 980 12/5/2021
1.15.11 1,634 11/29/2021
1.15.10 4,524 11/25/2021
1.15.9 3,036 11/25/2021
1.15.8 3,276 11/25/2021
1.15.7 3,124 11/25/2021
1.15.6 4,398 11/24/2021
1.15.4 6,363 11/24/2021
1.15.2 1,939 10/22/2021
1.15.1 942 10/22/2021
1.14.8 7,996 1/4/2021
1.14.7 3,989 12/15/2020
1.14.6 10,344 12/9/2020
1.14.5 1,057 12/9/2020
1.14.4 4,427 11/22/2020
1.14.2 1,114 11/22/2020
1.14.1 2,790 10/8/2020
1.14.0 1,138 10/8/2020
1.13.4 1,184 10/8/2020
1.13.1 1,427 7/5/2020
1.13.0 1,455 5/20/2020
1.12.3 1,434 2/2/2020
1.12.2 2,347 2/1/2020
1.12.1 1,259 2/1/2020
1.0.12 2,594 1/29/2020
1.0.11 1,444 1/28/2020
1.0.10 1,141 1/28/2020
1.0.9 1,265 1/14/2020
1.0.8 1,229 1/14/2020
1.0.7 1,458 1/12/2020
1.0.6.1 1,212 1/11/2020
1.0.6 1,291 1/10/2020
1.0.5 1,085 1/10/2020
1.0.4 1,092 1/10/2020
1.0.3 1,132 1/10/2020
1.0.2.3 1,093 1/9/2020
1.0.2.2 1,087 1/9/2020
1.0.2.1 1,068 1/9/2020
1.0.2 1,044 1/8/2020
1.0.1 1,080 1/8/2020
1.0.0 1,101 1/7/2020