Questions tagged [request-pipeline]

ASP.NET MVC Request Handling Pipeline. The flow that ASP.NET MVC runs from the time when the request is made until returning the contents to the user's browser.

19 questions
0
votes
0 answers

Does Firefox pipeline requests?

Does Firefox pipeline requests? If not by default, can it be configured to do so? Firefox downloads the main html file. Then extracts all the auxiliary files it needs to download. What next? Does it send out the first request and wait for the…
Henrik2
  • 271
  • 1
  • 2
  • 9
0
votes
5 answers

Need to store a static value for the duration of a request. How?

I have an ASP.NET MVC application. I have come to an idea of generating autoincremented values to be used as unique element ids. The question is, how can I have and work with a global variable which should be there for the duration of a request…
User
  • 30,403
  • 22
  • 79
  • 107
-1
votes
1 answer

Adding a tag to the ASP.NET Request Activity

I would like to add a tag to the System.Diagnostics.Activity object for each incoming ASP.NET Request, as soon as the request-handling starts. Is there a way I can access the ActivitySource for the Request Pipeline, and add a listener to…
-1
votes
1 answer

Use of next() method in Use() method in .net Core?

What happens if I don't call next() method or next.Invoke() in a Use() method in the request pipeline, will it call the next middleware component or not?
1
2