Amazon.Runtime.ClientConfig.SetUseNagleIfAvailable C# (CSharp) Метод

SetUseNagleIfAvailable() публичный Метод

Enable or disable the Nagle algorithm on the underlying http client. This method is not intended to be called by consumers of the AWS SDK for .NET
public SetUseNagleIfAvailable ( bool useNagle ) : void
useNagle bool
Результат void
        public void SetUseNagleIfAvailable(bool useNagle)
        {
#if BCL
            this.UseNagleAlgorithm = useNagle;                
#endif
        }