IHttpHandlerFactory Interface

Definition

Defines the contract that class factories must implement to create new IHttpHandler objects.

public interface class IHttpHandlerFactory
public interface IHttpHandlerFactory
type IHttpHandlerFactory = interface
Public Interface IHttpHandlerFactory
Derived

Remarks

A class that implements the IHttpHandlerFactory interface has no behavior except to dynamically manufacture new instances of classes that implement the IHttpHandler interface.

Methods

GetHandler(HttpContext, String, String, String)

Returns an instance of a class that implements the IHttpHandler interface.

ReleaseHandler(IHttpHandler)

Enables a factory to reuse an existing handler instance.

Applies to