ServicePoint.ConnectionLimit Properti
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 atau mengatur jumlah maksimum koneksi yang diizinkan pada objek ServicePoint ini.
public:
property int ConnectionLimit { int get(); void set(int value); };
public int ConnectionLimit { get; set; }
member this.ConnectionLimit : int with get, set
Public Property ConnectionLimit As Integer
Nilai Properti
Jumlah maksimum koneksi yang diizinkan pada objek ServicePoint ini.
Pengecualian
Batas koneksi sama dengan atau kurang dari 0.
Contoh
Contoh kode berikut menggunakan properti ConnectionLimit untuk memeriksa jumlah maksimum koneksi yang dapat dibuat objek ServicePoint ke Pengidentifikasi Sumber Daya Seragam (URI) yang ditentukan.
Console::WriteLine( "ConnectionName = {0}", sp->ConnectionName );
// Display the maximum number of connections allowed on this
// ServicePoint instance.
Console::WriteLine( "ConnectionLimit = {0}", sp->ConnectionLimit );
// Display the number of connections associated with this
// ServicePoint instance.
Console::WriteLine( "CurrentConnections = {0}", sp->CurrentConnections );
Console.WriteLine("ConnectionName = " + sp.ConnectionName);
// Display the maximum number of connections allowed on this
// ServicePoint instance.
Console.WriteLine("ConnectionLimit = " + sp.ConnectionLimit);
// Display the number of connections associated with this
// ServicePoint instance.
Console.WriteLine("CurrentConnections = " + sp.CurrentConnections);
Console.WriteLine(("ConnectionName = " + sp.ConnectionName))
' Display the maximum number of connections allowed on this
' ServicePoint instance.
Console.WriteLine(("ConnectionLimit = " + sp.ConnectionLimit.ToString()))
' Display the number of connections associated with this
' ServicePoint instance.
Console.WriteLine(("CurrentConnections = " + sp.CurrentConnections.ToString()))
Keterangan
Hati
WebRequest
, HttpWebRequest
, ServicePoint
, dan WebClient
usang, dan Anda tidak boleh menggunakannya untuk pengembangan baru. Gunakan HttpClient sebagai gantinya.
Properti ConnectionLimit mengatur jumlah maksimum koneksi yang dapat dilakukan objek ServicePoint ke sumber daya Internet. Nilai properti ConnectionLimit diatur ke nilai properti ServicePointManager.DefaultConnectionLimit saat objek ServicePoint dibuat; perubahan berikutnya pada DefaultConnectionLimit tidak berpengaruh pada objek ServicePoint yang ada.
Berlaku untuk
Lihat juga
- Mengelola Koneksi