NetworkInformation.GetConnectionProfiles Metode
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Mendapatkan daftar profil untuk koneksi, aktif atau sebaliknya, di komputer lokal.
public:
static IVectorView<ConnectionProfile ^> ^ GetConnectionProfiles();
static IVectorView<ConnectionProfile> GetConnectionProfiles();
public static IReadOnlyList<ConnectionProfile> GetConnectionProfiles();
function getConnectionProfiles()
Public Shared Function GetConnectionProfiles () As IReadOnlyList(Of ConnectionProfile)
Mengembalikan
Array objek ConnectionProfile .
Keterangan
Contoh berikut menunjukkan cara mengambil ConnectionProfile. Fungsi ini memanggil getConnectionProfiles untuk mengambil semua koneksi yang tersedia pada perangkat dan menampilkan menggunakan daftar. Atau, aplikasi Anda dapat memanggil getInternetConnectionProfile untuk mengambil ConnectionProfile yang mewakili koneksi yang saat ini digunakan untuk konektivitas Internet.
Catatan Untuk implementasi metode getConnectionProfileInfo dalam kode di bawah ini, dan untuk contoh tambahan tentang bagaimana metode kelas NetworkInformation diterapkan untuk mengambil profil koneksi, lihat Mulai Cepat: Mengambil informasi koneksi jaringan.
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");
}
}