Imgur.API.Endpoints.Impl.GalleryEndpoint.GetGalleryItemCommentIdsAsync C# (CSharp) Method

GetGalleryItemCommentIdsAsync() public method

List all of the IDs for the comments on an item.
/// 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 GetGalleryItemCommentIdsAsync ( string galleryItemId ) : Task>
galleryItemId string The gallery item id.
return Task>
        public async Task<IEnumerable<int>> GetGalleryItemCommentIdsAsync(string galleryItemId)
        {
            if (string.IsNullOrWhiteSpace(galleryItemId))
                throw new ArgumentNullException(nameof(galleryItemId));

            var url = $"gallery/{galleryItemId}/comments/ids";

            using (var request = RequestBuilder.CreateRequest(HttpMethod.Get, url))
            {
                var commentIds = await SendRequestAsync<IEnumerable<int>>(request).ConfigureAwait(false);
                return commentIds;
            }
        }

Usage Example

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

            var exception =
                await
                    Record.ExceptionAsync(
                        async () => await endpoint.GetGalleryItemCommentIdsAsync(null).ConfigureAwait(false))
                        .ConfigureAwait(false);
            Assert.NotNull(exception);
            Assert.IsType<ArgumentNullException>(exception);
        }
All Usage Examples Of Imgur.API.Endpoints.Impl.GalleryEndpoint::GetGalleryItemCommentIdsAsync