What are remotable objects in .NET Remoting?

Q

What are remotable objects in .NET Remoting?

✍: Guest

A

Remotable objects are the objects that can be marshaled across the application domains. You can marshal by value, where a deep copy of the object is created and then passed to the receiver. You can also marshal by reference, where just a reference to an existing object is passed.

2013-11-12, 1581👍, 0💬