NamedPipeWrapper.New
1.5.0-beta1
See the version list below for details.
dotnet add package NamedPipeWrapper.New --version 1.5.0-beta1
NuGet\Install-Package NamedPipeWrapper.New -Version 1.5.0-beta1
<PackageReference Include="NamedPipeWrapper.New" Version="1.5.0-beta1" />
paket add NamedPipeWrapper.New --version 1.5.0-beta1
#r "nuget: NamedPipeWrapper.New, 1.5.0-beta1"
// Install NamedPipeWrapper.New as a Cake Addin #addin nuget:?package=NamedPipeWrapper.New&version=1.5.0-beta1&prerelease // Install NamedPipeWrapper.New as a Cake Tool #tool nuget:?package=NamedPipeWrapper.New&version=1.5.0-beta1&prerelease
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.
Messages are sent and received asynchronously on a separate background thread and marshalled back to the calling thread (typically the UI).
Supports large messages - up to 300 MiB.
Requires .NET 4.0 full.
The package was forked from NamedPipeWrapper 1.4.0 creadted by Andrew C. Dvorak and the original project url is https://github.com/acdvorak/named-pipe-wrapper.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net40 is compatible. net403 was computed. net45 was computed. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.5.1-beta2 | 993 | 4/1/2016 |
1.5.0-beta1 | 749 | 4/1/2016 |
1.Solved the problem of NamedPipeWrapper 1.4.0 that a program tries to call the Start() method of a NamedPipeServer instance when there is NamedPipeServer instance with the same pipe name started on the same computer, the thread started by the Start() method will throw a IOException will cannot be caught. To avoid this, I added a mutex to the Server<TRead, TWrite> class(the base class of NamedPipeServer) and let Server<TRead, TWrite>.Start() return false if here is NamedPipeServer instance with the same pipe name started on the same computer.
2.Lets the Server<TRead, TWrite> implement the IDispoable interface to release the pipe name mutex and call Close() when being disposed.
3.Adds a readonly PipeName property to NamedPipeServer and NamedPipeClient for convenience.