Tagged Questions

6
votes
3answers
1k views

.NET Remoting Singleton memory leak, TCP, Marshal by Reference

I am using the simplest example of remoting that I could find, sharing an object between a windows service and a windows forms program (client), running on the same machine. The service instantiates ...
2
votes
1answer
244 views

Is it possible to share Objects between applications without serialization?

Is it possible to share Objects between C# applications without serialization? I need three apps to share an instance of the same object, but the object itself doesn't support serialization. The ...
1
vote
1answer
367 views

Why does MarshalByRefObject.InitializeLifetimeService return an object and not an ILease?

I am reading through the msdn docs for .NET Remoting and noticed that the MarshalByRefObject.InitializeLifetimeService method returns an object instead of an ILease. The documentation says that the ...