コード例 #1
0
        protected override bool Authenticate(string username, string password)
        {
            AuthenticationCheckEventArgs eventArgs = new AuthenticationCheckEventArgs(username, password);

            eventArgs.IsAuthenticated = false;
            AuthenticationCheck(this, eventArgs);
            return(eventArgs.IsAuthenticated);
        }
コード例 #2
0
 protected override bool Authenticate(string username, string password)
 {
     AuthenticationCheckEventArgs eventArgs = new AuthenticationCheckEventArgs(username, password);
     eventArgs.IsAuthenticated = false;
     AuthenticationCheck(this, eventArgs);
     return eventArgs.IsAuthenticated;
 }