次の方法で共有


GattDeviceService.GetCharacteristics(Guid) メソッド

定義

指定した UUID で識別され、この GattDeviceService インスタンスに属する特性のベクターを返します。

重要

GetCharacteristics API は非推奨であり、今後のバージョンの Windows では使用できない可能性があります。 代わりに、 GetCharacteristicsForUuidAsync を使用します

public:
 virtual IVectorView<GattCharacteristic ^> ^ GetCharacteristics(Platform::Guid characteristicUuid) = GetCharacteristics;
IVectorView<GattCharacteristic> GetCharacteristics(winrt::guid const& characteristicUuid);
/// [Windows.Foundation.Metadata.Deprecated("Use GetCharacteristicsForUuidAsync instead of GetCharacteristics.  For more information, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 262144, "Windows.Foundation.UniversalApiContract")]
IVectorView<GattCharacteristic> GetCharacteristics(winrt::guid const& characteristicUuid);
public IReadOnlyList<GattCharacteristic> GetCharacteristics(Guid characteristicUuid);
[Windows.Foundation.Metadata.Deprecated("Use GetCharacteristicsForUuidAsync instead of GetCharacteristics.  For more information, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 262144, "Windows.Foundation.UniversalApiContract")]
public IReadOnlyList<GattCharacteristic> GetCharacteristics(Guid characteristicUuid);
function getCharacteristics(characteristicUuid)
Public Function GetCharacteristics (characteristicUuid As Guid) As IReadOnlyList(Of GattCharacteristic)

パラメーター

characteristicUuid
Guid

Platform::Guid

winrt::guid

取得する特性の UUID。

戻り値

UUID が characteristicUuid と一致する GattCharacteristic オブジェクトのベクター。

属性

Windows の要件

アプリの機能
bluetooth

注釈

1 つのサービスにアクセスできるアプリは 1 つだけです。 あるアプリで GATT 通知トリガーが登録されている場合、このメソッドは、その後この API をサブ呼び出す他のすべてのアプリに対して例外をスローします。

適用対象