ServicePointManagerElement.UseNagleAlgorithm 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
Nagle 알고리즘이 사용되는지 여부를 결정하는 부울 값을 가져오거나 설정합니다.
public:
property bool UseNagleAlgorithm { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("useNagleAlgorithm", DefaultValue=true)]
public bool UseNagleAlgorithm { get; set; }
[<System.Configuration.ConfigurationProperty("useNagleAlgorithm", DefaultValue=true)>]
member this.UseNagleAlgorithm : bool with get, set
Public Property UseNagleAlgorithm As Boolean
속성 값
trueNagle 알고리즘을 사용하려면 그렇지 않으면 . false 기본값은 true입니다.
- 특성
설명
Nagle 알고리즘은 작은 데이터 패킷을 버퍼링하고 단일 패킷으로 전송하여 네트워크 트래픽을 줄이는 데 사용됩니다. 이 프로세스를 "잔소리"라고도 합니다. 전송되는 패킷 수를 줄이고 패킷당 오버헤드를 줄이기 때문에 널리 사용됩니다.