SerialDataReceivedEventHandler是否可用于Windows服务的SerialPort通信

时间:2014-03-03 11:48:21

标签: c# windows-services serial-port

我有一个工作的Windows窗体应用程序,它能够从串口读取数据。现在根据我的要求,我必须将其转换为Windows服务。在我的Windows窗体应用程序中,我使用port1.DataReceived += new SerialDataReceivedEventHandler(port1_DataReceived);从中获取数据串口。

现在根据我的要求我有一个问题我是否可以在Windows服务中使用SerialDataReceivedEventHandler来从串口获取数据。 这是我的代码..

port1.DataReceived += new SerialDataReceivedEventHandler(port1_Data);

调用port1_Data方法从串口读取数据是否是正确的方法..

请帮帮我。

0 个答案:

没有答案