⟩ You have a .NET Remoting object named Utils. The Utils class is a client-activated .NETRemoting object. You want to write a client application that creates and uses a Utils object. Youwant the client application to hold onto a reference to a Utils object for the duration of itsexecution.What should you do?A. Construct the Utils object, and hold the object in a member variable.B. Construct the Utils object, and set the LifeTimeService.LeaseTime to 0.C. In the client application, create an Implementation of the ISponsor interface. Implement theRenewal method to extend the lease.D. In the client application, create an Implementation of the ILease interface. Implement theCurrentLeaseTime property to return Int32.MaxValue.
C. In the client application, create an Implementation of the ISponsor interface. Implement the
Renewal method to extend the lease.