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

LogoutEventArgs() public method

public LogoutEventArgs ( IPrincipalCollection principals ) : System
principals IPrincipalCollection
return System
        public LogoutEventArgs(IPrincipalCollection principals)
        {
            if (principals == null)
            {
                throw new ArgumentNullException("principals");
            }
            _principals = principals;
        }
LogoutEventArgs