HttpWorkerRequest implementation

I am implementing HttpWorkerRequest to be able to display Asp.Net web pages outside of IIS, m looking for some docs / recommendations on this in particular:

  • When can it be advisable to implement HttpWorkerRequest directly, and not just inherit from SimpleWorkerRequest ?
  • Is there more details about each of the overridden methods in the HttpWorkerRequest other than the MSDN documentation?

(I fully expect the answer to be “No, no other information,” however I thought I checked here just in case).

+4
source share
1 answer

Here is an example that I got from the Internet. This works for me :)

+2
source

Source: https://habr.com/ru/post/1316156/


All Articles