Imgur.API.Endpoints.Impl.AlbumEndpoint.RemoveAlbumImagesAsync C# (CSharp) Method

RemoveAlbumImagesAsync() public method

Takes a list of imageIds and removes from the album. For anonymous albums, {albumId} should be the deletehash that is returned at creation.
/// 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 RemoveAlbumImagesAsync ( string albumId, IEnumerable imageIds ) : Task
albumId string The id or deletehash of the album.
imageIds IEnumerable The imageIds that you want to be removed from the album.
return Task
        public async Task<bool> RemoveAlbumImagesAsync(string albumId, IEnumerable<string> imageIds)
        {
            if (string.IsNullOrWhiteSpace(albumId))
                throw new ArgumentNullException(nameof(albumId));

            if (imageIds == null)
                throw new ArgumentNullException(nameof(imageIds));

            var url = $"album/{albumId}/remove_images";

            using (var request = RequestBuilder.RemoveAlbumImagesRequest(url, imageIds))
            {
                var removed = await SendRequestAsync<bool>(request).ConfigureAwait(false);
                return removed;
            }
        }

Usage Example

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

            var exception =
                await
                    Record.ExceptionAsync(
                        async () => await endpoint.RemoveAlbumImagesAsync("12x5454", null).ConfigureAwait(false))
                        .ConfigureAwait(false);
            Assert.NotNull(exception);
            Assert.IsType<ArgumentNullException>(exception);
        }
All Usage Examples Of Imgur.API.Endpoints.Impl.AlbumEndpoint::RemoveAlbumImagesAsync