Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我尝试在名称管道中打开另一个连接时出现以下错误
System.IO.IOException 未处理 HResult=-2147024665 消息=所有管道实例都忙。
如何删除所有管道实例?
为了删除一个管道实例,任何持有该实例句柄的进程必须要么调用它的 CloseHandle,要么进程必须退出。
是您的代码充当管道服务器吗?当您打开管道的第一个句柄时,您是否正确设置了管道实例数的限制?
发布管道服务器的代码以及“尝试打开另一个连接”的任何代码。