Ejemplo n.º 1
0
        public static async Task <bool> TryGetTenantAsync()
        {
            var details = await UsersAndGroupsSnippets.GetTenantDetailsAsync();

            return(details != null);
        }
Ejemplo n.º 2
0
        public static async Task <bool> TryGetGroupsAsync()
        {
            var groups = await UsersAndGroupsSnippets.GetGroupsAsync();

            return(groups != null);
        }
Ejemplo n.º 3
0
        public static async Task <bool> TryGetAadGraphClientAsync()
        {
            var client = await UsersAndGroupsSnippets.GetGraphClientAsync();

            return(client != null);
        }