Skip to content

Alessio2405/InterProcessCommunicationPipes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 

Repository files navigation

MultiProcess Named Pipe Server-Client Communication in C# (.NET)

Build the Project

dotnet build InterProcessCommunication.sln

Usage

Server Pipe

NamedPipeServer server = new NamedPipeServer();
server.StartListening();

#On Closing
server.StopNotify()

Client Pipe

var client = new NamedPipeClient();
client.StartListening(); 

//On Closing
client.StopNotify()

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages