H.Formatters.System.Text.Json 15.0.0

There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package H.Formatters.System.Text.Json --version 15.0.0
 
NuGet\Install-Package H.Formatters.System.Text.Json -Version 15.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.Formatters.System.Text.Json" Version="15.0.0" />
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="H.Formatters.System.Text.Json" Version="15.0.0" />
 
Directory.Packages.props
<PackageReference Include="H.Formatters.System.Text.Json" />
 
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 H.Formatters.System.Text.Json --version 15.0.0
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: H.Formatters.System.Text.Json, 15.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.
#:package H.Formatters.System.Text.Json@15.0.0
 
#: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=H.Formatters.System.Text.Json&version=15.0.0
 
Install as a Cake Addin
#tool nuget:?package=H.Formatters.System.Text.Json&version=15.0.0
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

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

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

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 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 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 is compatible. 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.
.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 is compatible. 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 (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
15.0.1-dev.3 598 12/16/2024
15.0.0 90,976 12/6/2024
14.0.0 263,041 10/21/2024
12.0.59 21,069 12/8/2023
12.0.56 3,036 11/27/2023
12.0.53 15,069 7/24/2023
12.0.51 7,916 5/25/2023
12.0.47 5,085 2/27/2023
12.0.46 716 2/26/2023
12.0.45 1,387 2/2/2023
12.0.44 1,357 1/10/2023
12.0.43 1,157 1/5/2023
12.0.42 7,119 9/14/2022
12.0.41 1,317 9/9/2022
12.0.40 1,044 8/26/2022
2.2.2-dev.2 140 10/21/2024
2.2.1 2,539 10/19/2024
2.2.1-dev.2 150 10/19/2024
2.1.0-dev.322 1,779 1/20/2024
2.1.0-dev.318 155 12/18/2023
Loading failed

⭐ Last 10 features:
- feat: Updated to NET9 and added trimming/NativeAOT support. 2024年12月06日
- feat: Use same versions for all packages. 2024年10月21日
- feat: Added MessagePackFormatter<T1> to H.Formatters.MessagePack lib. 2024年01月20日
- feat: Added PipeClient.CreatePipeStreamForConnectionFunc. 2023年12月08日
- feat: Updated versioning. 2023年12月08日
- feat: Added support for WriteOnly PipeServer. 2023年12月08日
- feat: Added PipeServer.CreatePipeStreamForConnectionFunc. 2023年12月08日
- feat: Use MessagePackFormatter by default on net8.0. 2023年11月27日
- feat: Update to net8.0. 2023年11月27日
- feat: Updated packages. 2023年07月24日
🐞 Last 10 bug fixes:
- fix: Removed net6/net7. 2024年10月19日
- fix: Small fixes for latest PR 2024年10月19日
- fix: Updated System.Text.Json to 8.0.4 2024年09月17日
- fix: Changed default formatter to SystemTextJsonFormatter. 2023年12月18日
- fix: Fixed problems with $(BUILD_NUMBER). 2023年12月08日
- test: Try to fix test for windows. 2023年12月08日
- fix: Fixed bug with PipeStream.ReadAsync on non windows systems. 2023年05月26日
- 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日