Apache.Shiro.Authc.LoginEventArgs.LoginEventArgs C# (CSharp) 메소드

LoginEventArgs() 공개 메소드

public LoginEventArgs ( IAuthenticationToken token ) : System
token IAuthenticationToken
리턴 System
        public LoginEventArgs(IAuthenticationToken token)
        {
            if (token == null)
            {
                throw new ArgumentNullException("token");
            }
            _token = token;
        }
LoginEventArgs