![]() |
VOOZH | about |
The package has been renamed to add H.Formatters.System.Text.Json.
dotnet add package H.Formatters.Json --version 12.0.3.7
NuGet\Install-Package H.Formatters.Json -Version 12.0.3.7
<PackageReference Include="H.Formatters.Json" Version="12.0.3.7" />
<PackageVersion Include="H.Formatters.Json" Version="12.0.3.7" />Directory.Packages.props
<PackageReference Include="H.Formatters.Json" />Project file
paket add H.Formatters.Json --version 12.0.3.7
#r "nuget: H.Formatters.Json, 12.0.3.7"
#:package H.Formatters.Json@12.0.3.7
#addin nuget:?package=H.Formatters.Json&version=12.0.3.7Install as a Cake Addin
#tool nuget:?package=H.Formatters.Json&version=12.0.3.7Install as a Cake Tool
👁 Language
👁 Requirements
👁 Build Status
A simple, easy to use, strongly-typed, async wrapper around .NET named pipes.
client.WriteAsync, if necessaryPipeAccessRule's(see H.Pipes.AccessControl nuget package) or more complex code to access using the PipeServer.PipeStreamInitializeAction property👁 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.
Install-Package H.Formatters.Json
// If you want to transfer any data that can be serialized/deserialized in binary using [Ceras](https://github.com/rikimaru0345/Ceras).
Install-Package H.Formatters.Ceras
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);
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
{
Id = new Random().Next(),
Text = "Hello!",
});
await Task.Delay(Timeout.InfiniteTimeSpan);
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.Json
Install-Package H.Formatters.Ceras
using H.Formatters;
await using var server = new PipeServer<MyMessage>(pipeName, formatter: new JsonFormatter());
await using var client = new PipeClient<MyMessage>(pipeName, formatter: new JsonFormatter());
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();
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 was computed. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 was computed. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 was computed. |
| .NET Framework | net451 net451 is compatible. net452 net452 was computed. net46 net46 was computed. net461 net461 was computed. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated | |
|---|---|---|---|
| 12.0.3.7 | 9,930 | 11/24/2021 | 12.0.3.7 is deprecated because it is no longer maintained. |
| 12.0.3.6 | 13,881 | 1/4/2021 | 12.0.3.6 is deprecated because it is no longer maintained. |
| 12.0.3.5 | 4,400 | 12/9/2020 | 12.0.3.5 is deprecated because it is no longer maintained. |
| 12.0.3.4 | 4,431 | 12/9/2020 | 12.0.3.4 is deprecated because it is no longer maintained. |
| 12.0.3.3 | 4,363 | 11/22/2020 | 12.0.3.3 is deprecated because it is no longer maintained. |
| 12.0.3.2 | 4,453 | 8/4/2020 | 12.0.3.2 is deprecated because it is no longer maintained. |
| 12.0.3.1 | 4,558 | 1/28/2020 | 12.0.3.1 is deprecated because it is no longer maintained. |
| 12.0.3 | 4,620 | 1/10/2020 | 12.0.3 is deprecated because it is no longer maintained. |
⭐ Last 10 features:
- feat: Updated README. 2021-11-25
- feat: Added CerasFormatter package. 2021-11-25
- feat: Changed minimal requiments to .NET Framework 4.5.1. 2021-11-25
- feat: Deleted Wire formatter(it's deprecated). 2021-10-22
- feat: To auto-versioning. 2021-10-22
- feat: To C# 10. Part 2. 2021-10-22
- feat: To net6.0 and C#10. Part 1. 2021-10-22
- feat: Added README to NuGet package. 2021-10-22
🐞 Last 10 bug fixes:
- fix: Fixed await using ConfigureAwait(false) missing bug. 2021-10-22
- fix: Fixed H.Pipes.AccessControl warnings. 2021-10-22