ServicePointManager.UseNagleAlgorithm 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.
Menentukan apakah algoritma Nagle digunakan oleh titik layanan yang dikelola oleh objek ini ServicePointManager .
public:
static property bool UseNagleAlgorithm { bool get(); void set(bool value); };
public static bool UseNagleAlgorithm { get; set; }
static member UseNagleAlgorithm : bool with get, set
Public Shared Property UseNagleAlgorithm As Boolean
Nilai Properti
true
untuk menggunakan algoritma Nagle; jika tidak, false
. Nilai defaultnya adalah true
.
Contoh
Contoh kode berikut mengatur properti ini.
ServicePointManager::UseNagleAlgorithm = true;
ServicePointManager::Expect100Continue = true;
ServicePointManager::CheckCertificateRevocationList = true;
ServicePointManager::DefaultConnectionLimit = ServicePointManager::DefaultPersistentConnectionLimit;
ServicePointManager.UseNagleAlgorithm = true;
ServicePointManager.Expect100Continue = true;
ServicePointManager.CheckCertificateRevocationList = true;
ServicePointManager.DefaultConnectionLimit = ServicePointManager.DefaultPersistentConnectionLimit;
ServicePointManager.UseNagleAlgorithm = True
ServicePointManager.Expect100Continue = True
ServicePointManager.CheckCertificateRevocationList = True
ServicePointManager.DefaultConnectionLimit = _
ServicePointManager.DefaultPersistentConnectionLimit
Keterangan
Algoritma Nagle digunakan untuk mengurangi lalu lintas jaringan dengan menyangga paket kecil data dan mengirimkannya sebagai satu paket. Proses ini juga disebut sebagai "mengomel"; ini banyak digunakan karena mengurangi jumlah paket yang dikirimkan dan menurunkan overhead per paket.
Mengubah nilai properti ini tidak mempengaruhi objek yang ada ServicePoint . Hanya titik layanan baru yang dibuat setelah perubahan terpengaruh.
Algoritma Nagle sepenuhnya dijelaskan dalam IETF RFC 896.