ISponsor Interface
.NET Framework (current version)
Indicates that the implementer wants to be a lifetime lease sponsor.
Assembly: mscorlib (in mscorlib.dll)
| Name | Description | |
|---|---|---|
![]() | Renewal(ILease^) | Requests a sponsoring client to renew the lease for the specified object. |
An object must implement the ISponsor interface if it needs to request a lease renewal for a particular object. An object that implements the ISponsor interface can become a sponsor by registering itself with the lease manager. The ISponsor interface is used by the lifetime service to call back to the sponsor.
public ref class MyClientSponsor: public MarshalByRefObject, public ISponsor { private: DateTime lastRenewal; public: MyClientSponsor() { lastRenewal = DateTime::Now; } [SecurityPermissionAttribute(SecurityAction::LinkDemand,Flags=SecurityPermissionFlag::Infrastructure)] virtual TimeSpan Renewal( ILease^ /* lease */ ) { Console::WriteLine( "Request to renew the lease time." ); Console::WriteLine( "Time since last renewal: {0}", DateTime::Now - lastRenewal ); lastRenewal = DateTime::Now; return TimeSpan::FromSeconds( 20 ); } };
.NET Framework
Available since 1.1
Available since 1.1
Show:
