//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ /* * WindowsAuthenticationEventHandler class * * Copyright (c) 1999 Microsoft Corporation */ namespace System.Web.Security { using System.Security.Principal; /// /// Defines the signature for the /// WindowsAuthentication_OnAuthenticate event handler. /// public delegate void WindowsAuthenticationEventHandler(Object sender, WindowsAuthenticationEventArgs e); }