Example #1
0
        /// <summary>
        /// Add users to the group
        /// Wrap method for addUsers(...)
        /// </summary>
        private async void addUsers()
        {
            string usersToAdd = await ContentDialogHelper.InputDialogAsync("Enter user emails", "Separate multiple emails with a space...");

            // Only try to add the user if the OK button was clicked
            addUsers(usersToAdd);
        }