UpdateGroupAsync() public static method

public static UpdateGroupAsync ( string groupId ) : Task
groupId string
return Task
Esempio n. 1
0
        public static async Task <bool> TryUpdateGroupAsync()
        {
            // Create an group first, then update it.
            string createdGroup = await GroupSnippets.CreateGroupAsync(STORY_DATA_IDENTIFIER);

            return(await GroupSnippets.UpdateGroupAsync(createdGroup));
        }