Imgur.API.Endpoints.Impl.CustomGalleryEndpoint.RemoveCustomGalleryTagsAsync C# (CSharp) Method

RemoveCustomGalleryTagsAsync() public method

Remove tags from a custom gallery. 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 RemoveCustomGalleryTagsAsync ( IEnumerable tags ) : Task
tags IEnumerable The tags that should be removed.
return Task
        public async Task<bool> RemoveCustomGalleryTagsAsync(IEnumerable<string> tags)
        {
            if (tags == null)
                throw new ArgumentNullException(nameof(tags));

            if (ApiClient.OAuth2Token == null)
                throw new ArgumentNullException(nameof(ApiClient.OAuth2Token), OAuth2RequiredExceptionMessage);

            var url = "g/custom/remove_tags";

            using (var request = RequestBuilder.RemoveCustomGalleryTagsRequest(url, tags))
            {
                var removed = await SendRequestAsync<bool?>(request).ConfigureAwait(false);
                return removed ?? true;
            }
        }

Usage Example

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

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