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
Explain the Session state management options available with ASP.NET?
Explain the basic functionality of garbage collector?
Why select Web API?
What’s the difference between asp.net web forms and asp.net mvc?
What is redirecting behavior?
Differentiate between a hyperlink control and a linkbutton control.
How many types of cache are there?
What is the difference between application state and session state in asp net?
Which method is used to force all the validation controls to run?
Explain what does mvc represent in asp.net? : asp.net mvc
What is difference between session and cookie?
What is the best Macanism to clear the Cache in asp.net
What is a session http?
How do you design a website with multilingual support in ASP.NET ?
Why do we use asp.net?