C#中异步串口调用的同步类库

发布于 2024-11-25 04:14:04 字数 236 浏览 1 评论 0原文

我需要编写一个 .NET 2.0 C# 类库来包装对串行端口的一些调用。

我已经知道,使用 SerialPort 对象的 DataReceived 事件(可能)是从端口读取数据(当数据可供读取时)的最佳方法。

尽管如此,对我的类库的调用应该是同步的,然后我就不能使用异步的 DataReceived 了。

是否有建议的开发模式来做这样的事情?

谢谢, 曼努埃尔

I need to write a .NET 2.0 C# class library to wrap some calls to a serial port.

I already know that using DataReceived event of the SerialPort object is (probably) the best way to read data from the port just when they are available for read.

Nevertheless, calls to my class library should be sync and then I can't use DataReceived that is async.

Is there a suggested develop pattern to do a thing like that?

Thanks,
Manuel

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

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

发布评论

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

评论(1

陪我终i 2024-12-02 04:14:04

只需在等待数据时使用 while 循环即可。

Just use a while loop while waiting for your data.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文