I am using httphandler. Is the HttpContext which is passed in ProcessRequest referencing HttpContext.Current? Are there any differences using any of them?
I am using httphandler. Is the HttpContext which is passed in ProcessRequest referencing HttpContext.Current
Share
Yes, both represent the same object. Personally I prefer to use the one passed as argument in contrast to the static
HttpContext.Current.