我正在使用 EMDK v2.3 在 Visual Studio 2008 中使用 C# 开发应用程序,以使用集成在带有 Windows Mobile 6.1 的 HandHeld MC9090G 中的 RFID 阅读器读取标签。我已经阅读了执行此任务的文档,但是当我运行代码时,它会引发我找不到原因的异常。我正在使用 Symbol.RFID3 组件。
当我使用
1) 抛出异常:“OperationFailureException”
string hostname = "localhost";//localhost because the RFID reader is included in the HandHeld
RFIDReader rfid3 = new RFIDReader(hostname, 0, 0);
rfid3.Connect(); // line that throws the Exception
2) 抛出异常:“InvalidUsageException”
string hostname = "localhost";//localhost because the RFID reader is included in the HandHeld
RFIDReader rfid3 = new RFIDReader(hostname, 5084, 10);
rfid3.Connect(); //line that throws the Exception"
关于原因的任何想法?