HttpApplication.AddOnPostAuthorizeRequestAsync 方法
定义
将指定的 PostAuthorizeRequest 事件添加到当前请求的异步 PostAuthorizeRequest 事件处理程序的集合。Adds the specified PostAuthorizeRequest event to the collection of asynchronous PostAuthorizeRequest event handlers for the current request.
重载
| AddOnPostAuthorizeRequestAsync(BeginEventHandler, EndEventHandler, Object) |
将指定的 PostAuthorizeRequest 添加到当前请求的异步 PostAuthorizeRequest 事件处理程序的集合中。Adds the specified PostAuthorizeRequest to the collection of asynchronous PostAuthorizeRequest event handlers for the current request. |
| AddOnPostAuthorizeRequestAsync(BeginEventHandler, EndEventHandler) |
将指定的 PostAuthorizeRequest 事件添加到当前请求的异步 PostAuthorizeRequest 事件处理程序的集合。Adds the specified PostAuthorizeRequest event to the collection of asynchronous PostAuthorizeRequest event handlers for the current request. |
AddOnPostAuthorizeRequestAsync(BeginEventHandler, EndEventHandler, Object)
将指定的 PostAuthorizeRequest 添加到当前请求的异步 PostAuthorizeRequest 事件处理程序的集合中。Adds the specified PostAuthorizeRequest to the collection of asynchronous PostAuthorizeRequest event handlers for the current request.
public:
void AddOnPostAuthorizeRequestAsync(System::Web::BeginEventHandler ^ beginHandler, System::Web::EndEventHandler ^ endHandler, System::Object ^ state);
public void AddOnPostAuthorizeRequestAsync (System.Web.BeginEventHandler beginHandler, System.Web.EndEventHandler endHandler, object state);
member this.AddOnPostAuthorizeRequestAsync : System.Web.BeginEventHandler * System.Web.EndEventHandler * obj -> unit
Public Sub AddOnPostAuthorizeRequestAsync (beginHandler As BeginEventHandler, endHandler As EndEventHandler, state As Object)
参数
- beginHandler
- BeginEventHandler
启动 BeginEventHandler 的异步处理的 PostAuthorizeRequest。The BeginEventHandler that starts asynchronous processing of the PostAuthorizeRequest.
- endHandler
- EndEventHandler
结束 EndEventHandler 的异步处理的 PostAuthorizeRequest。The EndEventHandler that ends asynchronous processing of the PostAuthorizeRequest.
- state
- Object
要添加到异步 PostAuthorizeRequest 的关联状态。The associated state to add to the asynchronous PostAuthorizeRequest.
适用于
AddOnPostAuthorizeRequestAsync(BeginEventHandler, EndEventHandler)
将指定的 PostAuthorizeRequest 事件添加到当前请求的异步 PostAuthorizeRequest 事件处理程序的集合。Adds the specified PostAuthorizeRequest event to the collection of asynchronous PostAuthorizeRequest event handlers for the current request.
public:
void AddOnPostAuthorizeRequestAsync(System::Web::BeginEventHandler ^ bh, System::Web::EndEventHandler ^ eh);
public void AddOnPostAuthorizeRequestAsync (System.Web.BeginEventHandler bh, System.Web.EndEventHandler eh);
member this.AddOnPostAuthorizeRequestAsync : System.Web.BeginEventHandler * System.Web.EndEventHandler -> unit
Public Sub AddOnPostAuthorizeRequestAsync (bh As BeginEventHandler, eh As EndEventHandler)
参数
启动 BeginEventHandler 的异步处理的 PostAuthorizeRequest。The BeginEventHandler that starts asynchronous processing of the PostAuthorizeRequest.
结束 EndEventHandler 的异步处理的 PostAuthorizeRequest。The EndEventHandler that ends asynchronous processing of the PostAuthorizeRequest.