共用方式為


HOW TO:更新租用期

本主題專門說明一項為了在現有應用程式中提供回溯相容性而保留的舊有技術,不建議用於新的開發工作。分散式應用程式應使用  Windows Communication Foundation (WCF) 進行開發。

如下列程式碼範例所示,這個程式碼會取得租用期並將租用期直接延長。

範例

Dim obj As New RemoteType()
Dim lease As ILease = CType(RemotingServices.GetLifetimeService(obj), ILease)
Dim expireTime As TimeSpan = lease.Renew(TimeSpan.FromSeconds(20))
RemoteType obj = new RemoteType();
ILease lease = (ILease)RemotingServices.GetLifetimeService(obj);
TimeSpan expireTime = lease.Renew(TimeSpan.FromSeconds(20));

編譯程式碼

這個範例需要:

  • System.Runtime.Remoting.Lifetime 命名空間的參考。

另請參閱

概念

更新租用期

建置日期:2010-02-13