named-pipe-wrapper
named-pipe-wrapper copied to clipboard
Wrapper library for Windows Named Pipes in C# / .NET 4.0 / VS 2010
Seeing this error occasionally. Any fix can be applied? Object Graph cannot be null. Parameter name: graph mscorlib at System.Runtime.Serialization.Formatters.Binary.ObjectWriter.Serialize(Object graph, Header[] inHeaders, __BinaryWriter serWriter, Boolean fCheck) at System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.Serialize(Stream serializationStream,...
Hello, I am using this code to receive messages from pipe clients: ``` _pipeServer = new NamedPipeServer(CommandServer.Command.PipeServerName); _pipeServer.ClientConnected += delegate (NamedPipeConnection connection) { //// }; _pipeServer.ClientDisconnected += delegate (NamedPipeConnection connection)...
Because of security concerns and other problems of BinaryFormatter (see [Marc Gravell on problems with BinaryFormatter](https://blog.marcgravell.com/2020/03/why-do-i-rag-on-binaryformatter.html)) maybe it's possible to change the serializer or inject another one? Any suggestions?
Hi, I had extracted the namedpipe wrapper from the github and used in the c# .net core wpf application. The wpf application is working fine and no issues And i...
Frequent create NamedPipeClient instance to Connect Server can cause memory leak `Task.Factory.StartNew(() => { while (true) { i++; NamedPipeClient _client2 = new NamedPipeClient(Constants.PIPE_NAME); _client2.ServerMessage += OnServerMessage; _client2.Disconnected += OnDisconnected; _client2.Start();...
Not sure if this still has support but I had high hopes until I discovered it uses XML serialization to instantiate types. I need to use between 2 projects that...
Bumps [log4net](https://github.com/apache/logging-log4net) from 2.0.2 to 2.0.10. Release notes Sourced from log4net's releases. Address CVE-2018-1285 and improve netstandard 2.0 support Apache log4net 2.0.10 improves netstandard2.0 support thanks to community member @NicholasNoise....
When connecting from the client, there seems to be no way to tell if there server is actually running and the connection is up. In the following code: _pipe =...
Hi I'm building a solution with two projects - the Client is a 8x64 project and the Server is 0x86 When i send a message across to the server there...