So I plan to have a button on my GUI of my .NET Application which controls the service. I wanna stop the service when a button is pressed. I want to achieve this with an argument passed between the VB.NET application and the service. As far as I know, there are 4 available technologies in inter-process communication:
- .NET Remoting
- WCF Anonymous Pipes
- WCF Named Pipes
- Memory Mapped Files
What technology is the best one to implement those functionalities? As this is my first approach with IPC I thank you in advance for in-depth answers :)