//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ /* * CustomAuthenticationEventHandler class * * Copyright (c) 1999 Microsoft Corporation */ namespace System.Web.Security { using System.Security.Principal; /// /// This delegate defines the signature for the /// FormsAuthentication_OnAuthenticate event handler. /// public delegate void FormsAuthenticationEventHandler(Object sender, FormsAuthenticationEventArgs e); }