OpenTween.Twitter.EditList C# (CSharp) Method

EditList() public method

public EditList ( long listId, string new_name, bool isPrivate, string description ) : Task
listId long
new_name string
isPrivate bool
description string
return Task
        public async Task<ListElement> EditList(long listId, string new_name, bool isPrivate, string description)
        {
            var response = await this.Api.ListsUpdate(listId, new_name, description, isPrivate)
                .ConfigureAwait(false);

            var list = await response.LoadJsonAsync()
                .ConfigureAwait(false);

            return new ListElement(list, this);
        }