|
summaries and tech views for new developers C#,asp.net for web\mobile development,databases,iis6 and more.
Creating this site was an idea that popped up after some programing years,
when you have to get back to the same things you all ready forgot,
while new stuff is arriving to town.
In this site you can find summaries on tech stuff im into,
so for a stable wide base knowledge pyramid ,enjoy!!
|
|
ASP.NET Pipeline
ASP.NET HttpRuntime uses a the HttpApplicationFactory class that receives a
WorkerRequest Object
that contains the Request URL,query string and a pointer to a buffer where the
content will render to.
the class creates the HttpContext object that Encapsulates all HTTP-specific
information about an individual HTTP request , its possible to add data to
HttpContext.Items collection , HttpContext duration is till the response is out.
after the HttpContext creation, the class creates an instance of a
HttpApplication from the HttpApplication pool
,by default the number of threads in the pool are 25 but it can be configured ,
the HttpApplication duration is as the HttpContext if the working mode is not
MultyThreading .
the HttpApplication creates the page by the
HandlerFactory that chooses the right handler that renders the content to the
buffer.
|