ServicePoint.MaxIdleTime Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém ou define a quantidade de tempo que uma conexão associada ao objeto ServicePoint pode permanecer ociosa antes que a conexão seja fechada.
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
Valor da propriedade
O período de tempo, em milissegundos, que uma conexão associada ao objeto ServicePoint pode permanecer ociosa antes de ser fechada e reutilizada para outra conexão.
Exceções
MaxIdleTime é definido como menor que Infinite ou maior que Int32.MaxValue.
Exemplos
O exemplo de código a seguir usa a propriedade MaxIdleTime para definir e recuperar o tempo ocioso 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()))
Comentários
Cuidado
WebRequest
, HttpWebRequest
, ServicePoint
e WebClient
estão obsoletos e você não deve usá-los para um novo desenvolvimento. Em vez disso, use HttpClient.
Você pode definir MaxIdleTime como Timeout.Infinite para indicar que uma conexão associada ao objeto ServicePoint nunca deve ter tempo limite.
O valor padrão da propriedade MaxIdleTime é o valor da propriedade ServicePointManager.MaxServicePointIdleTime quando o objeto ServicePoint é criado. Alterações subsequentes na propriedade MaxServicePointIdleTime não têm efeito sobre objetos ServicePoint existentes.
Quando o MaxIdleTime de uma conexão associada a um ServicePoint for excedido, a conexão permanecerá aberta até que o aplicativo tente usar a conexão. Nesse momento, a Estrutura fecha a conexão e cria uma nova conexão com o host remoto.