在VB.NET中如何与字节类型命名管道服务器对话?

发布于 2024-11-09 05:42:29 字数 128 浏览 0 评论 0原文

我正在编写一个 VB.net 客户端,以字节传输模式写入和读取命名管道。 我从 MSDN 文章中了解到 CallNamedPipe() 仅适用于消息类型命名管道。

那么我还有其他选择吗,还是必须将管道服务器代码更改为消息类型。

I am writing a VB.net client to write to and read from a named pipe in byte transmission mode.
I learned from the MSDN article that CallNamedPipe() only works for message-type named pipes.

So do I have other choices, or do I have to change the pipe server code to message type.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

仅冇旳回忆 2024-11-16 05:42:29

经过研究,我现在知道:

  1. CallNamedPipe等于CreateFile + TransactNamedPipe + CloseHandle。这就是它在字节类型管道上失败的原因。
  2. 在 VB.net 和 VB 中,可以简单地使用 CreateFile、WriteFile 和 ReadFile 来与字节类型命名管道通信。

After research, I now know that:

  1. CallNamedPipe equals to CreateFile + TransactNamedPipe + CloseHandle. That's why it fails on byte type pipes.
  2. In VB.net and VB, one can simply use CreateFile, WriteFile and ReadFile to talk to byte type named pipes.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文