DeviceInformationCollection クラス

定義

DeviceInformation オブジェクトのコレクションを表します。

public ref class DeviceInformationCollection sealed : IIterable<DeviceInformation ^>, IVectorView<DeviceInformation ^>
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
class DeviceInformationCollection final : IIterable<DeviceInformation>, IVectorView<DeviceInformation>
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
public sealed class DeviceInformationCollection : IEnumerable<DeviceInformation>, IReadOnlyList<DeviceInformation>
Public NotInheritable Class DeviceInformationCollection
Implements IEnumerable(Of DeviceInformation), IReadOnlyList(Of DeviceInformation)
継承
Object Platform::Object IInspectable DeviceInformationCollection
属性
実装

Windows の要件

デバイス ファミリ
Windows 10 (10.0.10240.0 で導入)
API contract
Windows.Foundation.UniversalApiContract (v1.0 で導入)

var DeviceInformation = Enumeration.DeviceInformation;
DeviceInformation.findAllAsync(deviceClass).then(
    successCallback, 
    errorCallback
);

// Handles successful completion of the findAllAsync method.
function successCallback(deviceInformationCollection) {
    var numDevices = deviceInformationCollection.length;
    document.getElementById("statusMessage").innerHTML = 
        numDevices + " device interface(s) found";
    if (numDevices) {
        for (var i = 0; i < numDevices; i++) {
            printFriendlyNameAndID(deviceInformationCollection[i], 
                document.getElementById("Output"));
        }
    } else {
        document.getElementById("statusMessage").innerHTML = "No devices found";
    }
}

// Handles an error completion of the findAllAsync method.
function errorCallback(e) {
    document.getElementById("statusMessage").innerHTML = 
        "Failed to find devices, error: " + e.message;
}

注釈

FindAllAsync が正常に完了すると、DeviceInformation オブジェクトを含む DeviceInformationCollection が作成されます。

コレクション メンバー リスト

JavaScript の場合、DeviceInformationCollection にはメンバーリストに表示されるメンバーがあります。 さらに、DeviceInformationCollection では、 長さ プロパティ、 Array.prototype のメンバー、およびインデックスを使用して項目にアクセスできます。

C# または Microsoft Visual Basic でのコレクションの列挙

DeviceInformationCollection は列挙可能であるため、C# の foreach などの言語固有の構文を使用してコレクション内の項目を列挙できます。 コンパイラによって型キャストが行われ、明示的に キャストする IEnumerable<DeviceInformation> 必要はありません。 GetEnumerator を呼び出す場合など、明示的にキャストする必要がある場合は、DeviceInformation 制約を使用して IEnumerable<T> にキャストします。

プロパティ

Size

コレクション内の DeviceInformation オブジェクトの数。

メソッド

First()

列挙された DeviceInformation オブジェクトを反復処理できるオブジェクトを取得します。最初の オブジェクトから始まります。

GetAt(UInt32)

指定したインデックス位置にある DeviceInformation オブジェクトを取得します。

GetMany(UInt32, DeviceInformation[])

DeviceInformation オブジェクトの範囲を取得します。

IndexOf(DeviceInformation, UInt32)

コレクション内の指定した DeviceInformation オブジェクトのインデックスを返します。

適用対象