DeviceInformation.Id 属性

定义

表示设备标识的字符串。

public:
 property Platform::String ^ Id { Platform::String ^ get(); };
winrt::hstring Id();
public string Id { get; }
var string = deviceInformation.id;
Public ReadOnly Property Id As String

属性值

String

Platform::String

winrt::hstring

表示设备标识的字符串。

注解

此 ID 可用于在实现设备功能的类上使用 CreateFromIdAsync 方法激活设备功能。

默认情况下,调用 DeviceInformation.FindAllAsync 将返回描述设备接口的 DeviceInformation 对象的集合 (,而不是) 的设备接口。 因此,这些对象的 DeviceInformation.Id 值是设备接口标识符 (,而不是设备标识符) 。 有 DeviceInformation.FindAllAsync 的重载,你可以向其传递 DeviceInformationKind 来控制返回的 DeviceInformation 对象是否表示设备、设备接口或其他类型的信息。

适用于