IHttpHandlerFactory Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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. |