VoteGalleryTagAsync() public method

Vote for a tag. Send the same value again to undo a vote. 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 VoteGalleryTagAsync ( string galleryItemId, string tag, VoteOption vote ) : Task
galleryItemId string The gallery item id.
tag string Name of the tag (implicitly created, if doesn't exist).
vote VoteOption The vote.
return Task
コード例 #1
0
        public async Task VoteGalleryTagAsync_WithTagNull_ThrowsArgumentNullException()
        {
            var client = new ImgurClient("123", "1234", MockOAuth2Token);
            var endpoint = new GalleryEndpoint(client);

            var exception =
                await
                    Record.ExceptionAsync(
                        async () =>
                            await endpoint.VoteGalleryTagAsync("kjkjk", null, VoteOption.Down).ConfigureAwait(false))
                        .ConfigureAwait(false);
            Assert.NotNull(exception);
            Assert.IsType<ArgumentNullException>(exception);
        }
コード例 #2
0
        public async Task VoteGalleryTagAsync_True()
        {
            var mockUrl = "https://api.imgur.com/3/gallery/XoPkL/vote/tag/cats/down";
            var mockResponse = new HttpResponseMessage(HttpStatusCode.OK)
            {
                Content = new StringContent(MockGalleryEndpointResponses.VoteGalleryTag)
            };

            var client = new ImgurClient("123", "1234", MockOAuth2Token);
            var endpoint = new GalleryEndpoint(client,
                new HttpClient(new MockHttpMessageHandler(mockUrl, mockResponse)));
            var voted = await endpoint.VoteGalleryTagAsync("XoPkL", "cats", VoteOption.Down).ConfigureAwait(false);

            Assert.NotNull(voted);
        }