IHttpHandlerFactory 接口

定义

定义类工厂为创建新的 IHttpHandler 对象而必须实现的协定。

public interface class IHttpHandlerFactory
public interface IHttpHandlerFactory
type IHttpHandlerFactory = interface
Public Interface IHttpHandlerFactory
派生

注解

实现接口的 IHttpHandlerFactory 类没有行为,除非动态制造实现 IHttpHandler 接口的类的新实例。

方法

GetHandler(HttpContext, String, String, String)

返回实现 IHttpHandler 接口的类的实例。

ReleaseHandler(IHttpHandler)

使工厂可以重用现有的处理程序实例。

适用于