C#/WPF 应用程序实现应用程序 CLI 的简单 IPC 机制
所以我在.Net 上阅读了大量有关进程间通信的内容。 命名管道、远程处理。 这一切看起来都很棒,但对于我需要做的事情来说可能有点过分了。
我想向我的 WPF 应用程序添加一个命令行界面,因此我需要一种简单的 IPC 机制来将字符串从一个进程发送到已经运行的应用程序。
SO 建议这样做什么?
So I've been reading lots about interprocess communication on .Net. Named pipes, remoting. It all seems great but possibly overkill for what I need to do.
I want to add a command line interface to my WPF application, so I need a simple IPC mechanism to send the string from one process to the already running app.
What does SO recommend for doing so?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
NamedPipeClientStream 和 NamedPipeServerStream 非常简单。 这是一个非常简单的示例,其中 IPC 用于将命令行参数从应用程序的一个实例传递到另一个应用程序实例。 这不完全是您想要做的,但非常接近。
NamedPipeClientStream and NamedPipeServerStream are pretty simple. Here's a pretty simple example where IPC is used to pass command line arguments from one instance of an application to another. It's not exactly what you want to do, but pretty close.