Apache.Shiro.Authc.LogoutEventArgs.LogoutEventArgs C# (CSharp) Méthode

LogoutEventArgs() public méthode

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