Considering no explicit thread was created in the codes, for parallel http requests will there be multiple threads serving the requests? Or a single thread may serve multiple requests at a time?
Is it safe to assume the followings:
- Each thread would server only one http request at a time?
- For http requests the dotnet framerowk/IIS would have separate threads serving the request. i.e. one thread one request?