Imgur.API.Endpoints.Impl.CommentEndpoint.ReportCommentAsync C# (CSharp) Method

ReportCommentAsync() public method

Report a comment for being inappropriate. OAuth authentication required.
/// Thrown when a null reference is passed to a method that does not accept it as a /// valid argument. /// Thrown when an error is found in a response from an Imgur endpoint. Thrown when an error is found in a response from a Mashape endpoint.
public ReportCommentAsync ( int commentId, ReportReason reason ) : Task
commentId int The comment id.
reason ReportReason The reason why the comment is inappropriate.
return Task
        public async Task<bool> ReportCommentAsync(int commentId, ReportReason reason)
        {
            if (ApiClient.OAuth2Token == null)
                throw new ArgumentNullException(nameof(ApiClient.OAuth2Token), OAuth2RequiredExceptionMessage);

            var url = $"comment/{commentId}/report";

            using (var request = RequestBuilder.ReportItemRequest(url, reason))
            {
                var reported = await SendRequestAsync<bool?>(request).ConfigureAwait(false);
                return reported ?? true;
            }
        }

Usage Example

コード例 #1
0
        public async Task ReportCommentAsync_WithOAuth2TokenNull_ThrowsArgumentNullException()
        {
            var client = new ImgurClient("123", "1234");
            var endpoint = new CommentEndpoint(client);

            var exception =
                await
                    Record.ExceptionAsync(
                        async () =>
                            await endpoint.ReportCommentAsync(539556821, ReportReason.Spam).ConfigureAwait(false))
                        .ConfigureAwait(false);
            Assert.NotNull(exception);
            Assert.IsType<ArgumentNullException>(exception);
        }
All Usage Examples Of Imgur.API.Endpoints.Impl.CommentEndpoint::ReportCommentAsync