NetworkInformation.GetConnectionProfiles メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ローカル コンピューター上のアクティブまたはそれ以外の接続のプロファイルの一覧を取得します。
public:
static IVectorView<ConnectionProfile ^> ^ GetConnectionProfiles();
static IVectorView<ConnectionProfile> GetConnectionProfiles();
public static IReadOnlyList<ConnectionProfile> GetConnectionProfiles();
function getConnectionProfiles()
Public Shared Function GetConnectionProfiles () As IReadOnlyList(Of ConnectionProfile)
戻り値
ConnectionProfile オブジェクトの配列。
注釈
次の例では、 ConnectionProfile を取得する方法を示します。 この関数は getConnectionProfiles を呼び出して、デバイスで使用可能なすべての接続を取得し、リストを使用して表示します。 または、アプリで getInternetConnectionProfile を呼び出して、インターネット接続に現在使用されている接続を表す ConnectionProfile を取得することもできます。
メモ 以下のコードの getConnectionProfileInfo メソッドの実装と、接続プロファイルを取得するために NetworkInformation クラス メソッドを実装する方法の追加の例については、「 クイック スタート: ネットワーク接続情報の取得」を参照してください。
function DisplayConnectionProfileList() {
var profileList = "";
var ConnectionProfiles = networkInfo.getConnectionProfiles();
if (ConnectionProfiles.length !== 0) {
for (var i = 0; i < ConnectionProfiles.length; i++) {
//Display Connection profile info for each profile by passing it
//to a function that accesses and displays the connection properties
profileList += getConnectionProfileInfo(ConnectionProfiles[i]);
profileList += "-------------------------\n\r";
}
mySample.displayStatus(profileList);
}
else {
mySample.displayStatus("No profiles found");
}
}
catch (e) {
mySample.displayError("Exception Caught: " + e + "\n\r");
}
}