What are remotable objects in .NET Remoting?
Answers were Sorted based on User's Feedback
Answer / bindu sarika
Remotable objects are objects that are marshalled across
different application domains.The objects can be marshalled
by value and marshalled by reference.
Marshalled by value:A deep copy of the object is passed to
the reciever.
Marshalled by reference:A reference to the existing object
is passed .
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ganesh
Remotable objects are object that are instantiated outside
the caller's application domain.
Either by value or by reference.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is unmanaged code?
Difference between web services & remoting?
Define a process?
What are the security features in .net remoting?
Explain how to perform remoting?
What are the security measures exist for .net remoting in system.runtime.remoting?
How do you directly call a native function exported from a DLL?
Will clr handle unmanaged code or not?
What is Remoting?
What is unmanaged code and will CLR handle this kind of code or not ?
How to register a shared assembly ?
What are different types of assemblies?