public async Task UpdateCommentForIssue()

in src/YouTrackSharp/Issues/IssuesService.Comments.cs [44:62]


        public async Task UpdateCommentForIssue(string issueId, string commentId, string text)
        {
            if (string.IsNullOrEmpty(issueId))
            {
                throw new ArgumentNullException(nameof(issueId));
            }
            if (string.IsNullOrEmpty(commentId))
            {
                throw new ArgumentNullException(nameof(commentId));
            }
            if (string.IsNullOrEmpty(text))
            {
                throw new ArgumentNullException(nameof(text));
            }

            var client = await _connection.GetAuthenticatedApiClient();
            //TODO text could be too large to send w/o multipart, generated api needs to be checked
            await client.IssuesCommentsPostAsync(issueId, commentId, false, "id", new IssueComment() {Text = text});
        }