次の方法で共有


GattDeviceService.FromIdAsync メソッド

定義

オーバーロード

FromIdAsync(String, GattSharingMode)

デバイス ID から新しい GattDeviceService オブジェクトをインスタンス化します。

FromIdAsync(String)

デバイス ID から新しい GattDeviceService をインスタンス化します。

FromIdAsync(String, GattSharingMode)

デバイス ID から新しい GattDeviceService オブジェクトをインスタンス化します。

public:
 static IAsyncOperation<GattDeviceService ^> ^ FromIdAsync(Platform::String ^ deviceId, GattSharingMode sharingMode);
/// [Windows.Foundation.Metadata.Overload("FromIdWithSharingModeAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncOperation<GattDeviceService> FromIdAsync(winrt::hstring const& deviceId, GattSharingMode const& sharingMode);
[Windows.Foundation.Metadata.Overload("FromIdWithSharingModeAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<GattDeviceService> FromIdAsync(string deviceId, GattSharingMode sharingMode);
function fromIdAsync(deviceId, sharingMode)
Public Shared Function FromIdAsync (deviceId As String, sharingMode As GattSharingMode) As IAsyncOperation(Of GattDeviceService)

パラメーター

deviceId
String

Platform::String

winrt::hstring

GATT デバイス ID。

sharingMode
GattSharingMode

GATT デバイスの共有モード。

戻り値

GattDeviceService オブジェクトを使用して完了する非同期操作。

属性

Windows の要件

デバイス ファミリ
Windows 10 Creators Update (10.0.15063.0 で導入)
API contract
Windows.Foundation.UniversalApiContract (v4.0 で導入)
アプリの機能
bluetooth

適用対象

FromIdAsync(String)

デバイス ID から新しい GattDeviceService をインスタンス化します。

public:
 static IAsyncOperation<GattDeviceService ^> ^ FromIdAsync(Platform::String ^ deviceId);
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncOperation<GattDeviceService> FromIdAsync(winrt::hstring const& deviceId);
/// [Windows.Foundation.Metadata.RemoteAsync]
/// [Windows.Foundation.Metadata.Overload("FromIdAsync")]
 static IAsyncOperation<GattDeviceService> FromIdAsync(winrt::hstring const& deviceId);
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<GattDeviceService> FromIdAsync(string deviceId);
[Windows.Foundation.Metadata.RemoteAsync]
[Windows.Foundation.Metadata.Overload("FromIdAsync")]
public static IAsyncOperation<GattDeviceService> FromIdAsync(string deviceId);
function fromIdAsync(deviceId)
Public Shared Function FromIdAsync (deviceId As String) As IAsyncOperation(Of GattDeviceService)

パラメーター

deviceId
String

Platform::String

winrt::hstring

GATT デバイス ID。

戻り値

非同期操作を管理するための オブジェクト。完了すると、新しくインスタンス化された GattDeviceService が返されます。

属性

Windows の要件

アプリの機能
bluetooth

注釈

このメソッドをストア アプリによって初めて呼び出す場合は、同意プロンプトを表示するために UI スレッドから呼び出す必要があります。 ユーザーが同意を与えた後、任意のアプリケーション スレッドから メソッドを呼び出すことができます。

ストア アプリが適切な機能を宣言していない場合、またはユーザーが同意を与えない場合、メソッドは null オブジェクトを返します。

適用対象