DeleteGroupAsync() public static method

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

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