FormsAuthenticationModule.Authenticate Esemény

Definíció

Akkor fordul elő, ha az alkalmazás hitelesíti az aktuális kérést.

public:
 event System::Web::Security::FormsAuthenticationEventHandler ^ Authenticate;
public event System.Web.Security.FormsAuthenticationEventHandler Authenticate;
member this.Authenticate : System.Web.Security.FormsAuthenticationEventHandler 
Public Custom Event Authenticate As FormsAuthenticationEventHandler 

Eseménytípus

Példák

Az alábbi példakód az FormsAuthentication_OnAuthenticate esemény használatával állítja be az User aktuális HttpContext tulajdonságot egy GenericPrincipal egyéni Identityobjektumra.

public void FormsAuthentication_OnAuthenticate(object sender, FormsAuthenticationEventArgs args)
{
  if (FormsAuthentication.CookiesSupported)
  {
    if (Request.Cookies[FormsAuthentication.FormsCookieName] != null)
    {
      try
      {
        FormsAuthenticationTicket ticket = FormsAuthentication.Decrypt(
          Request.Cookies[FormsAuthentication.FormsCookieName].Value);
        
        args.User = new System.Security.Principal.GenericPrincipal(
          new Samples.AspNet.Security.MyFormsIdentity(ticket),
          new string[0]);
      }
      catch (Exception e)
      {
        // Decrypt method failed.
      }
    }
  }
  else
  {
    throw new HttpException("Cookieless Forms Authentication is not " +
                            "supported for this application.");
  }
}
Public Sub FormsAuthentication_OnAuthenticate(sender As Object, _
                                              args As FormsAuthenticationEventArgs)
  If FormsAuthentication.CookiesSupported Then
    If Not Request.Cookies(FormsAuthentication.FormsCookieName) Is Nothing Then
      Try
        Dim ticket As FormsAuthenticationTicket = FormsAuthentication.Decrypt( _
          Request.Cookies(FormsAuthentication.FormsCookieName).Value)
        
        args.User = New System.Security.Principal.GenericPrincipal( _
          New Samples.AspNet.Security.MyFormsIdentity(ticket), _
          New String(0) {})
      Catch e As HttpException
        ' Decrypt method failed.
      End Try
    End If
  Else
      Throw New Exception("Cookieless Forms Authentication is not " & _
                            "supported for this application.")
  End If
End Sub

Megjegyzések

Az Authenticate esemény az esemény során AuthenticateRequest jön elő.

A Authenticate osztály FormsAuthenticationModule eseményét úgy kezelheti, hogy megad egy FormsAuthentication_OnAuthenticate nevű alrutint a ASP.NET-alkalmazás Global.asax fájljában.

Az FormsAuthenticationEventArgsUserFormsAuthentication_OnAuthenticate eseményhez megadott tulajdonság használatával egyéni objektummá User állíthatja HttpContext be az aktuális IPrincipal tulajdonságot. Ha az UserFormsAuthentication_OnAuthenticate esemény során nem ad meg értéket a tulajdonsághoz, a rendszer az űrlapok hitelesítési jegye által a cookie-ban vagy URL-címen megadott identitást használja.

A FormsAuthentication_OnAuthenticate esemény csak akkor jelentkezik, ha a hitelesítési mód Forms van beállítva a autentication element (ASP.NET Settings Schema) eleme, és a FormsAuthenticationModule az alkalmazás aktív HTTP-modulja.

A következőre érvényes:

Lásd még