gpt4 book ai didi

c# - 为什么我的 NamedPipeServerStream 不等待?

转载 作者:行者123 更新时间:2023-11-30 14:19:29 24 4
gpt4 key购买 nike

我正在使用 NamedPipeServerStream 在两个进程之间进行通信。这是我初始化和连接管道的代码:

void Foo(IHasData objectProvider)
{
Stream stream = objectProvider.GetData();
if (stream.Length > 0)
{
using (NamedPipeServerStream pipeServer = new NamedPipeServerStream("VisualizerPipe", PipeDirection.Out, 1, PipeTransmissionMode.Byte, PipeOptions.Asynchronous))
{
string currentDirectory = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
string uiFileName = Path.Combine(currentDirectory, "VisualizerUIApplication.exe");
Process.Start(uiFileName);
if(pipeServer.BeginWaitForConnection(PipeConnected, this).AsyncWaitHandle.WaitOne(5000))
{
while (stream.CanRead)
{
pipeServer.WriteByte((byte)stream.ReadByte());
}
}
else
{
throw new TimeoutException("Pipe connection to UI process timed out.");
}
}
}
}

private void PipeConnected(IAsyncResult e)
{
}

但它似乎从不等待。我经常收到以下异常:

System.InvalidOperationException:管道尚未连接。 在 System.IO.Pipes.PipeStream.CheckWriteOperations() 在 System.IO.Pipes.PipeStream.WriteByte(字节值) 在 PeachesObjectVisualizer.Visualizer.Show(IDialogVisualizerService windowService, IVisualizerObjectProvider objectProvider)

我认为等待返回后一切都应该准备就绪。

如果我使用 pipeServer.WaitForConnection() 一切正常,但如果管道未连接则挂起应用程序不是一个选项。

最佳答案

您需要调用EndWaitForConnection .

var asyncResult = pipeServer.BeginWaitForConnection(PipeConnected, this);

if (asyncResult.AsyncWaitHandle.WaitOne(5000))
{
pipeServer.EndWaitForConnection(asyncResult);

// ...
}

参见:IAsyncResult design pattern .

关于c# - 为什么我的 NamedPipeServerStream 不等待?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2595108/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com