UpdateGroupAsync() public static méthode

public static UpdateGroupAsync ( string groupId ) : Task
groupId string
Résultat Task
Exemple #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));
        }