Listing 1

public sealed class HttpContext
{
// Constructor
public HttpContext(System.Web.HttpWorkerRequest wr);
// Properties
public HttpRequest Request { get; }
public HttpResponse Response { get; }
public HttpServerUtility Server { get; }
public HttpSessionState Session { get; }
}

Listing 2

<httpHandlers>
<add verb="*" path="*.aspx"
type="System.Web.UI.PageHandlerFactory"/>
<add verb="*" path="*.ashx"
type="System.Web.UI.SimpleHandlerFactory"/>
<add verb="*" path="*.config"
type="System.Web.HttpForbiddenHandler"/>
<add verb="*" path="*.cs"
type="System.Web.HttpForbiddenHandler"/>
<!— More like these ‡
</httpHandlers>