Example #1
0
        public string[] FindUsers(string tenantName, string usernameToMatch)
        {
            if (string.IsNullOrEmpty(tenantName))
            {
                throw new ArgumentNullException("tenantName");
            }

            return(AuthenticationLogic.FindUsers(tenantName, usernameToMatch));
        }