private void SetServicePointConnectionLimit(Uri endpoint) { #if !NETSTANDARD16 ServicePointAccessor servicePoint = ServicePointAccessor.FindServicePoint(endpoint); servicePoint.ConnectionLimit = this.connectionLimit; #endif }
public void ServicePointAccessor_DisableNagle() { ServicePointAccessor accessor = ServicePointAccessor.FindServicePoint(ServicePointAccessorTests.uri); Assert.IsNotNull(accessor); ServicePoint servicePoint = ServicePointManager.FindServicePoint(ServicePointAccessorTests.uri); Assert.IsFalse(servicePoint.UseNagleAlgorithm); }
public void ServicePointAccessor_SetConnectionLimit() { int limit = 10; ServicePointAccessor accessor = ServicePointAccessor.FindServicePoint(ServicePointAccessorTests.uri); Assert.IsNotNull(accessor); accessor.ConnectionLimit = limit; ServicePoint servicePoint = ServicePointManager.FindServicePoint(ServicePointAccessorTests.uri); Assert.AreEqual(limit, servicePoint.ConnectionLimit); }