Apache.Shiro.Authc.LoginEventArgs.LoginEventArgs C# (CSharp) Method

LoginEventArgs() public method

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