CustomSensor.GetCurrentReading 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取当前传感器读数。
public:
virtual CustomSensorReading ^ GetCurrentReading() = GetCurrentReading;
CustomSensorReading GetCurrentReading();
public CustomSensorReading GetCurrentReading();
function getCurrentReading()
Public Function GetCurrentReading () As CustomSensorReading
返回
当前传感器读数。
注解
应用可以使用此方法轮询传感器中的当前读数,作为注册 ReadingChanged 事件处理程序的替代方法。 对于以特定帧速率更新其用户界面的应用来说,这是首选的替代方法。 无论是轮询一次还是多次轮询,应用都必须建立所需的 ReportInterval。 这会通知传感器驱动程序分配资源以满足后续轮询请求。
在使用此方法的返回值之前,应用必须先检查该值不为 null。 (如果值为 null 并且你尝试检索它,Windows 将生成 exception.)