Multiple choice technology programming languages

Which two methods are defined by IHttpHandler Interface?

  1. ProcessRequest and IsReusable

  2. ProcessResponse and IsReusable

  3. GenerateRequest and ProcessResponse

  4. GenerateResponse and ProcessRequest

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The IHttpHandler interface in ASP.NET defines exactly two methods: ProcessRequest (which handles the HTTP request) and IsReusable (which indicates whether the handler can be pooled for reuse). Other options mention non-existent methods like ProcessResponse or GenerateRequest.