C#中异步串口调用的同步类库
我需要编写一个 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需在等待数据时使用 while 循环即可。
Just use a while loop while waiting for your data.