Amazon.Runtime.ClientConfig.SetUseNagleIfAvailable C# (CSharp) Méthode

SetUseNagleIfAvailable() public méthode

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
Résultat void
        public void SetUseNagleIfAvailable(bool useNagle)
        {
#if BCL
            this.UseNagleAlgorithm = useNagle;                
#endif
        }