.NET Tricks, Tips, and Snippets
To make the lease on a singleton object never expire override the MarshalByRefObject method 'InitializeLifetiemService'. Simply make the method return null
public override object InitializeLifetiemService() { return null; }
Post a Comment
No comments:
Post a Comment