Answer Posted / sivasubramanian.k
A Runtime Callable Wrapper (RCW) is a proxy object
generated by the .NET Common Language Runtime (CLR) in
order to allow a Component Object Model (COM) object to be
accessed from managed code. Although the RCW appears to be
an ordinary object to .NET clients, its primary function is
to marshal calls between a .NET client and a COM object.
For example, a managed application written in C# might make
use of an existing COM library written in C++ or Visual
Basic 6, via RCWs.
The runtime creates exactly one RCW for each COM object,
regardless of the number of references that exist on that
object. The runtime maintains a single RCW per process for
each object. If you create an RCW in one application domain
or apartment, and then pass a reference to another
application domain or apartment, a proxy to the first
object will be used.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What permissions do asp.net applications posses by default?
Explain serialization and deserialization?
What is the use of asp.net web api?
How many types of session state management options available in asp.net?
Can I read the hard disk serial # of the client computer using asp.net?
How long does an http session last?
What is difference between session and viewstate?
What is special types forms
How does asp page work?
What’s the difference between response .redirect and server.transfer?
Which method do you use to kill explicitly a users session?
How is it possible for .NET to support many languages?
How can we implement a identity (sql server) call in an asp.net page?
What is event in asp.net?
How tooltip is set through code-behind in ASP.NET?