ServicePoint.MaxIdleTime Свойство
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Возвращает или задает время, когда соединение, связанное с объектом ServicePoint, может оставаться бездействием до закрытия подключения.
public:
property int MaxIdleTime { int get(); void set(int value); };
public int MaxIdleTime { get; set; }
member this.MaxIdleTime : int with get, set
Public Property MaxIdleTime As Integer
Значение свойства
Продолжительность времени в миллисекундах, которую соединение, связанное с объектом ServicePoint, может оставаться бездействующим до закрытия и повторного использования для другого подключения.
Исключения
MaxIdleTime имеет значение меньше Infinite или больше Int32.MaxValue.
Примеры
В следующем примере кода используется свойство MaxIdleTime для задания и извлечения времени простоя ServicePoint.
// Display the date and time that the ServicePoint was last
// connected to a host.
Console::WriteLine( "IdleSince = {0}", sp->IdleSince );
// Display the maximum length of time that the ServicePoint instance
// is allowed to maintain an idle connection to an Internet
// resource before it is recycled for use in another connection.
Console::WriteLine( "MaxIdleTime = {0}", sp->MaxIdleTime );
// Display the date and time that the ServicePoint was last
// connected to a host.
Console.WriteLine("IdleSince = " + sp.IdleSince.ToString());
// Display the maximum length of time that the ServicePoint instance
// is allowed to maintain an idle connection to an Internet
// resource before it is recycled for use in another connection.
Console.WriteLine("MaxIdleTime = " + sp.MaxIdleTime);
' Display the date and time that the ServicePoint was last
' connected to a host.
Console.WriteLine(("IdleSince = " + sp.IdleSince.ToString()))
' Display the maximum length of time that the ServicePoint instance
' is allowed to maintain an idle connection to an Internet
' resource before it is recycled for use in another connection.
Console.WriteLine(("MaxIdleTime = " + sp.MaxIdleTime.ToString()))
Комментарии
Осторожность
WebRequest
, HttpWebRequest
, ServicePoint
и WebClient
устарели, и их не следует использовать для новой разработки. Вместо этого используйте HttpClient.
Вы можете задать MaxIdleTime значение Timeout.Infinite, чтобы указать, что соединение, связанное с объектом ServicePoint, никогда не должно истекать.
Значение свойства MaxIdleTime по умолчанию — это значение свойства ServicePointManager.MaxServicePointIdleTime при создании объекта ServicePoint. Последующие изменения свойства MaxServicePointIdleTime не влияют на существующие объекты ServicePoint.
Если MaxIdleTime для подключения, связанного с ServicePoint, будет превышено, подключение остается открытым до тех пор, пока приложение не попытается использовать подключение. В то время платформа закрывает подключение и создает новое подключение к удаленному узлу.