コード例 #1
0
        public dynamic GetAllUsers(string authenticationCookie)
        {
            string authUserName;

            Authenticate(_auth, authenticationCookie, out authUserName, null);
            Authorize(_auth, authUserName, PermissionsTable.Instance.CanManageUsers, null);

            return(_auth.GetAllUsersFullInfo());
        }