public async Task RenameAsync()
        {
            if (await TableUtility.RenameAsync(this.authentication, this.descriptor) == false)
            {
                return;
            }

            if (this.Owner is ISelector selector)
            {
                selector.SelectedItem = this;
            }
        }