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