如何将远程对象(服务器)的租约时间设置为特定的UTC日期。
我知道客户端可以调用RemotingServices.GetLifetimeService方法来从AppDomain的租约管理器获取服务器对象的租约。 然后,客户端可以从Lease对象中调用Lease.Renew方法以扩展租约。
但是我只想为服务器设置某种UTC格式的到期日期(源自MarshalByRefObject)
public class MyServer : MarshalByRefObject
{
public override object InitializeLifetimeService()
{
//How to set the Initial lease time to a UTC date
}
}