Aracılığıyla paylaş


ServicePoint.IdleSince Özellik

Tanım

ServicePoint nesnesinin bir konağa en son bağlanıldığı tarihi ve saati alır.

public:
 property DateTime IdleSince { DateTime get(); };
public DateTime IdleSince { get; }
member this.IdleSince : DateTime
Public ReadOnly Property IdleSince As DateTime

Özellik Değeri

ServicePoint nesnesinin son bağlandığı tarih ve saati içeren DateTime nesnesi.

Örnekler

Aşağıdaki kod örneği, ServicePoint nesnesinin bir konağa en son bağlandığını tarih ve saati ayarlamak ve almak için IdleSince özelliğini kullanır.

// 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()))

Açıklamalar

Dikkat

WebRequest, HttpWebRequest, ServicePointve WebClient kullanım dışıdır ve bunları yeni geliştirme için kullanmamalısınız. Bunun yerine HttpClient kullanın.

IdleSince özelliği, bir hizmet noktasının ana bilgisayarla bağlantısının kesildiği son tarihi ve saati kaydeder. Geçerli saat ile IdleSince arasındaki fark MaxIdleTimedeğerini aştığında, ServicePoint nesnesi başka bir bağlantıya geri dönüştürülebilir.

Şunlara uygulanır