Describe and In Process Vs Out of Process component. Which
is faster?
Answer Posted / vivek
An in-process component is implemented as a DLL, and runs in
the same process space as its client app, enabling the most
efficient communication between client and component.Each
client app that uses the component starts a new instance of it.
An out of process component is implemented as an EXE, and
unlike a dll, runs in its own process space. As a result,
exe’s are slower then dll’s because communications between
client and component must be marshalled across process
boundaries. A single instance of an out of process component
can service many clients.
| Is This Answer Correct ? | 16 Yes | 4 No |
Post New Answer View All Answers
What is the significance of ASP.NET routing?
What is Web API Routing?
Out of ASP or ASP.NET which one is stateless?
How many types cache in asp net?
Explain difference between friend and protected friend?
Which is better viewstate or session?
What is app_code folder in asp net?
How do you secure your connection string information?
Why do we need asp.net?
What are the different methods of session maintenance in asp.net?
What is the difference between visual basic and asp.net?
Where do the cookie state and session state information be stored?
What are the various session state management options provided by asp.net?
Explain asp.net page life cycle?
Is LINQ performance wise better or using sqlcommand?