GetGroupsAsync() public static method

public static GetGroupsAsync ( ) : Task>
return Task>
Esempio n. 1
0
        public static async Task <bool> TryGetGroupAsync()
        {
            var groups = await GroupSnippets.GetGroupsAsync();

            var groupId   = groups[0];
            var groupName = await GroupSnippets.GetGroupAsync(groupId);

            return(groupName != null);
        }
Esempio n. 2
0
        public static async Task <bool> TryGetGroupOwnersAsync()
        {
            // Get all groups, then pass the first group id from the list.
            var groups = await GroupSnippets.GetGroupsAsync();

            var groupId = groups[0];
            var members = await GroupSnippets.GetGroupOwnersAsync(groupId);

            return(members != null);
        }
Esempio n. 3
0
        public static async Task <bool> TryGetGroupsAsync()
        {
            var groups = await GroupSnippets.GetGroupsAsync();

            return(groups != null);
        }