ServicePointManager.MaxServicePointIdleTime Свойство

Определение

Возвращает или задает максимальное время бездействия объекта ServicePoint.

public:
 static property int MaxServicePointIdleTime { int get(); void set(int value); };
public static int MaxServicePointIdleTime { get; set; }
static member MaxServicePointIdleTime : int with get, set
Public Shared Property MaxServicePointIdleTime As Integer

Значение свойства

Выраженное в миллисекундах максимальное время бездействия объекта ServicePoint. По умолчанию установлено значение 100 000 миллисекунд (100 секунд).

Исключения

MaxServicePointIdleTime значение меньше Infinite или больше int32.MaxValue.

Примеры

В следующем примере кода задается это свойство.

// Set the maximum number of ServicePoint instances to 
// maintain. If a ServicePoint instance for that host already 
// exists when your application requests a connection to
// an Internet resource, the ServicePointManager object
// returns this existing ServicePoint instance. If none exists 
// for that host, it creates a new ServicePoint instance.
ServicePointManager::MaxServicePoints = 4;

// Set the maximum idle time of a ServicePoint instance to 10 seconds.
// After the idle time expires, the ServicePoint object is eligible for
// garbage collection and cannot be used by the ServicePointManager.
ServicePointManager::MaxServicePointIdleTime = 10000;
// Set the maximum number of ServicePoint instances to
// maintain. If a ServicePoint instance for that host already
// exists when your application requests a connection to
// an Internet resource, the ServicePointManager object
// returns this existing ServicePoint instance. If none exists
// for that host, it creates a new ServicePoint instance.
ServicePointManager.MaxServicePoints = 4;

// Set the maximum idle time of a ServicePoint instance to 10 seconds.
// After the idle time expires, the ServicePoint object is eligible for
// garbage collection and cannot be used by the ServicePointManager object.
ServicePointManager.MaxServicePointIdleTime = 10000;
' Set the maximum number of ServicePoint instances to maintain.
' Note that, if a ServicePoint instance for that host already 
' exists when your application requests a connection to
' an Internet resource, the ServicePointManager object
' returns this existing ServicePoint. If none exists 
' for that host, it creates a new ServicePoint instance.
ServicePointManager.MaxServicePoints = 4

' Set the maximum idle time of a ServicePoint instance to 10 seconds.
' After the idle time expires, the ServicePoint object is eligible for
' garbage collection and cannot be used by the ServicePointManager.
ServicePointManager.MaxServicePointIdleTime = 10000

Комментарии

Свойство MaxServicePointIdleTime задает максимальное время простоя, которое ServicePointManager объект назначает свойству MaxIdleTime при создании ServicePoint объектов. Изменения этого значения влияют только ServicePoint на объекты, которые инициализируются после изменения значения.

После того как ServicePoint объект находится в режиме простоя в течение времени, указанного в MaxIdleTime, он может быть разрешен для сборки мусора. Объект ServicePoint неактивен, если список соединений, связанных с ServicePoint объектом, пуст.

Применяется к

См. также раздел