ServicePointManager.MaxServicePointIdleTime Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene o imposta il tempo massimo di inattività di un oggetto 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
Valore della proprietà
Il tempo massimo di inattività, in millisecondi, di un oggetto ServicePoint. Il valore predefinito è 100.000 millisecondi (100 secondi).
Eccezioni
MaxServicePointIdleTime è minore o maggiore di InfiniteInt32.MaxValue.
Esempio
Nell'esempio di codice seguente viene impostata questa proprietà.
// 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
Commenti
La MaxServicePointIdleTime proprietà imposta il tempo di inattività massimo assegnato all'oggetto durante la MaxIdleTimeServicePointManager creazione di ServicePoint oggetti. Le modifiche apportate a questo valore influiscono solo ServicePoint sugli oggetti inizializzati dopo la modifica del valore.
Dopo che un ServicePoint oggetto è stato inattiva per l'ora specificata in MaxIdleTime, è idoneo per Garbage Collection. Un ServicePoint oggetto è inattiva quando l'elenco di connessioni associate all'oggetto ServicePoint è vuoto.