H.Formatters.System.Text.Json
12.0.17
See the version list below for details.
dotnet add package H.Formatters.System.Text.Json --version 12.0.17
NuGet\Install-Package H.Formatters.System.Text.Json -Version 12.0.17
<PackageReference Include="H.Formatters.System.Text.Json" Version="12.0.17" />
paket add H.Formatters.System.Text.Json --version 12.0.17
#r "nuget: H.Formatters.System.Text.Json, 12.0.17"
// Install H.Formatters.System.Text.Json as a Cake Addin #addin nuget:?package=H.Formatters.System.Text.Json&version=12.0.17 // Install H.Formatters.System.Text.Json as a Cake Tool #tool nuget:?package=H.Formatters.System.Text.Json&version=12.0.17
Async Named Pipe Wrapper for .NET Standard 2.0
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(seeH.Pipes.AccessControl
nuget package) or more complex code to access using thePipeServer.PipeStreamInitializeAction
property
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);
P.S. To use the server inside the WinForms application, use Task.Run(). This creates a new thread for it.
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);
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
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
Install-Package H.Formatters.Inferno
using H.Formatters;
await using var server = new PipeServer<MyMessage>(pipeName, formatter: new InfernoFormatter(new SystemTextJsonFormatter()));
server.EnableEncryption();
await using var client = new PipeClient<MyMessage>(pipeName, formatter: new InfernoFormatter(new SystemTextJsonFormatter()));
client.EnableEncryption();
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.
It is based on this library, but provides an IPC implementation based on C# interfaces.
It supports remote method invocation, asynchronous methods, cancellation via CancellationToken
, events, and so on.
Contacts
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. 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. |
.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 is compatible. 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. |
-
.NETFramework 4.6.1
- H.Formatters (>= 2.0.17)
- System.Text.Json (>= 6.0.0)
-
.NETStandard 2.0
- H.Formatters (>= 2.0.17)
- System.Text.Json (>= 6.0.0)
-
net6.0
- H.Formatters (>= 2.0.17)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on H.Formatters.System.Text.Json:
Package | Downloads |
---|---|
H.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.Json - Supports `PipeAccessRule`'s(see `H.Pipes.AccessControl` nuget package) or more complex code to access using the `PipeServer.PipeStreamInitializeAction` property |
|
H.Ipc.Generator
C# Source Generator for Inter-Process Communication. |
|
H.Ipc
Core library for Inter-Process Communication. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
14.0.0 | 2,098 | 10/21/2024 |
12.0.59 | 10,883 | 12/8/2023 |
12.0.56 | 1,567 | 11/27/2023 |
12.0.53 | 11,323 | 7/24/2023 |
12.0.51 | 2,968 | 5/25/2023 |
12.0.47 | 4,609 | 2/27/2023 |
12.0.46 | 558 | 2/26/2023 |
12.0.45 | 1,230 | 2/2/2023 |
12.0.44 | 1,165 | 1/10/2023 |
12.0.43 | 998 | 1/5/2023 |
12.0.42 | 6,291 | 9/14/2022 |
12.0.41 | 1,135 | 9/9/2022 |
12.0.40 | 853 | 8/26/2022 |
12.0.39 | 738 | 8/26/2022 |
12.0.38 | 4,212 | 6/2/2022 |
12.0.37 | 1,414 | 4/21/2022 |
12.0.35 | 1,013 | 3/17/2022 |
12.0.34 | 816 | 3/12/2022 |
12.0.33 | 778 | 3/12/2022 |
12.0.32 | 729 | 3/12/2022 |
12.0.31 | 1,607 | 3/11/2022 |
12.0.30 | 745 | 3/11/2022 |
12.0.29 | 759 | 3/11/2022 |
12.0.26 | 832 | 3/7/2022 |
12.0.25 | 819 | 3/6/2022 |
12.0.23 | 2,077 | 12/21/2021 |
12.0.22 | 659 | 12/21/2021 |
12.0.21 | 637 | 12/20/2021 |
12.0.20 | 606 | 12/20/2021 |
12.0.19 | 621 | 12/20/2021 |
12.0.18 | 667 | 12/20/2021 |
12.0.17 | 619 | 12/20/2021 |
12.0.16 | 670 | 12/20/2021 |
12.0.3.8 | 3,957 | 11/25/2021 |
12.0.3.7 | 4,157 | 11/24/2021 |
2.2.2-dev.2 | 44 | 10/21/2024 |
2.2.1 | 653 | 10/19/2024 |
2.2.1-dev.2 | 67 | 10/19/2024 |
2.1.0-dev.322 | 662 | 1/20/2024 |
2.1.0-dev.318 | 79 | 12/18/2023 |
⭐ Last 10 features:
- feat: Updated README. 2021-12-20
- feat: Added ContinuousIntegrationBuild. 2021-12-20
- feat: Updated Microsoft.SourceLink.GitHub to 1.1.1. 2021-12-20
- feat: Added H.Formatters.Inferno EnableEncryption extensions. 2021-12-20
- feat: Added IFormatter to IPipeClient interface. 2021-12-20
- feat: Converted formatter Internal methods to protected. 2021-12-20
- feat: Deleted Formatter context. 2021-12-20
- feat: Added Formatter context. 2021-12-20
- feat: Added H.Pipes versioning to formatters. 2021-12-20
- feat: Deleted Connection Id and Name properties. Added PipeName and ServerName properties. 2021-12-06
🐞 Last 10 bug fixes:
- fix: Fixed Inferno KeyPair missing disposing. 2021-12-20
- fix: Fixed some Inferno KeyPair code. 2021-12-20
- fix: Converted Inferno KeyPair to internal class. 2021-12-20
- fix: Fixed Inferno namespaces. 2021-12-20
- fix: Fixed Inferno extensions memory leak. 2021-12-20
- fix: Deleted InfernoFormatter.SerializeAsyncIfPossible. 2021-12-20
- fix: Fixed some Inferno Formatter code. 2021-12-20
- fix: Fixed some Inferno warnings. 2021-12-20
- fix: Fixed Inferno target frameworks. 2021-12-20
- fix: Fixed Inferno .csproj files. 2021-12-20