コード例 #1
0
        private void SetServicePointConnectionLimit(Uri endpoint)
        {
#if !NETSTANDARD16
            ServicePointAccessor servicePoint = ServicePointAccessor.FindServicePoint(endpoint);
            servicePoint.ConnectionLimit = this.connectionLimit;
#endif
        }
コード例 #2
0
        public void ServicePointAccessor_DisableNagle()
        {
            ServicePointAccessor accessor = ServicePointAccessor.FindServicePoint(ServicePointAccessorTests.uri);

            Assert.IsNotNull(accessor);
            ServicePoint servicePoint = ServicePointManager.FindServicePoint(ServicePointAccessorTests.uri);

            Assert.IsFalse(servicePoint.UseNagleAlgorithm);
        }
コード例 #3
0
 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);
 }