Site Archives

Simple Singleton .NET Remoting

Posted by Gandalf on July 31st, 2006

In .NET remoting you have the option to host objects as either a Singleton or Single Call object. The Singleton hosting option guarantees that one and only one instance of your object will be hosted. Single Call means that each client will get a fresh copy of the object. You can think of Singleton objects […]