如何捕获将终端插入底座的情况
如何捕获将终端插入支架并进行测试?
我需要检查 3 件事:
1. if the terminal is in the cradle
2. if i got IP
3. if there is connection to my WebService
之后,我需要在 WebService 和终端(Windows-mobile 6.5)之间传输数据,
我该怎么做?
How to capture inserting terminal to cradle and make this tests?
i need to check 3 things:
1. if the terminal is in the cradle
2. if i got IP
3. if there is connection to my WebService
and after this, i need to transfer data between my WebService to the terminal (Windows-mobile 6.5)
how i can do it ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有一个命名空间 Microsoft.WindowsMobile.Status ,
您可以在其中找到有关您的设备的相关信息。
例如,我使用以下代码片段来了解是否存在活动桌面连接。
还有这个属性,没用过。
对于IP部分。
对于到您的 Web 服务的连接,您可以创建 bool 或 int 简单方法来测试它是否可用。
Web服务
您只需要调用Web服务即可。
There is a namespace Microsoft.WindowsMobile.Status
In there you can find relevant information about your device.
For example, I have used the following snippet to know if an active desktop connection is present.
Also there is this property, never used it.
For the IP part.
For the connection to your webservice, you can create bool or int simple method to test if it is available.
Webservice
You just need to call the webservice.