HttpRemotingHandlerFactory.GetHandler 方法     
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回 HttpRemotingHandler 类的实例。
public:
 virtual System::Web::IHttpHandler ^ GetHandler(System::Web::HttpContext ^ context, System::String ^ verb, System::String ^ url, System::String ^ filePath);public System.Web.IHttpHandler GetHandler (System.Web.HttpContext context, string verb, string url, string filePath);abstract member GetHandler : System.Web.HttpContext * string * string * string -> System.Web.IHttpHandler
override this.GetHandler : System.Web.HttpContext * string * string * string -> System.Web.IHttpHandlerPublic Function GetHandler (context As HttpContext, verb As String, url As String, filePath As String) As IHttpHandler参数
- context
- HttpContext
              HttpContext 类的实例提供用于为 HTTP 请求提供服务的内部服务器对象(如 Request、Response、Session 和 Server)的引用。
- verb
- String
客户端使用的 HTTP 数据传输方法(GET 或 POST)。
- filePath
- String
所请求资源的 PhysicalApplicationPath。
返回
处理该请求的新 HttpRemotingHandler。
实现
注解
有关当前方法的详细信息,请参阅 IHttpHandlerFactory.GetHandler。