WSFederationAuthenticationModule.OnPostAuthenticateRequest(Object, EventArgs) 方法

定义

处理 PostAuthenticateRequest ASP.NET 管道中的事件。Handles the PostAuthenticateRequest event from the ASP.NET pipeline.

protected:
 virtual void OnPostAuthenticateRequest(System::Object ^ sender, EventArgs ^ e);
protected virtual void OnPostAuthenticateRequest (object sender, EventArgs e);
abstract member OnPostAuthenticateRequest : obj * EventArgs -> unit
override this.OnPostAuthenticateRequest : obj * EventArgs -> unit
Protected Overridable Sub OnPostAuthenticateRequest (sender As Object, e As EventArgs)

参数

sender
Object

事件的源。The source for the event. 这将是 HttpApplication 对象。This will be an HttpApplication object.

e
EventArgs

事件的数据。The data for the event.

注解

默认情况下,这是一个空的处理程序。By default, this is an empty handler.

适用于