hi....
what is MarshallByRefObject in .net Remoting?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Munesh SharmaPosted May 1, 2016, 1:34 PM
Remoting; it means that between AppDomains or machines, rather than serialize and transfer theobject, the object stays at one end and a proxy is created at the other. All method calls to the proxy are intercepted and the call is transmitted as RPC wiki, msdn, causing the method to execute on the other machine (typically serialising the arguments and return value).
Note: this can lead to unexpectedly "chatty" interfaces. The object/proxy/RPC approach is now less preferable to approaches with an explicit service boundary; Microsoft now recommends WCF wiki,msdn instead of remoting.
SenthilkumarPosted Apr 17, 2012, 7:08 AM
For more Info:
http://msdn.microsoft.com/en-us/library/system.marshalbyrefobject(v=vs.71).aspx
http://reflector.webtropy.com/default.aspx/4@0/4@0/untmp/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/clr/src/BCL/System/MarshalByRefObject@cs/1305376/MarshalByRefObject@cs
http://www.codeproject.com/Articles/8771/Simple-but-potentially-useful-example-of-NET-Remot
VulpesPosted Apr 17, 2012, 6:53 AM
http://www.c-sharpcorner.com/Forums/Thread/142764/net-remoting-i-have-to-use-marshal-by-reference-in-thi.aspx