Imgur.API.Endpoints.Impl.NotificationEndpoint.MarkNotificationsViewedAsync C# (CSharp) Method

MarkNotificationsViewedAsync() public method

Marks notifications as viewed. 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 MarkNotificationsViewedAsync ( IEnumerable ids ) : Task
ids IEnumerable The notification id.
return Task
        public async Task<bool> MarkNotificationsViewedAsync(IEnumerable<string> ids)
        {
            if (ids == null)
                throw new ArgumentNullException(nameof(ids));

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

            var url = "notification";

            using (var request = RequestBuilder.MarkNotificationsViewedRequest(url, ids))
            {
                var viewed = await SendRequestAsync<bool>(request).ConfigureAwait(false);
                return viewed;
            }
        }

Usage Example

コード例 #1
0
        public async Task MarkNotificationViewedAsync_True()
        {
            var mockUrl = "https://api.imgur.com/3/notification";
            var mockResponse = new HttpResponseMessage(HttpStatusCode.OK)
            {
                Content = new StringContent(MockNotificationEndpointResponses.MarkNotificationViewed)
            };

            var client = new ImgurClient("123", "1234", MockOAuth2Token);
            var endpoint = new NotificationEndpoint(client,
                new HttpClient(new MockHttpMessageHandler(mockUrl, mockResponse)));
            var marked =
                await endpoint.MarkNotificationsViewedAsync(new List<string> {"12345", "4445"}).ConfigureAwait(false);

            Assert.True(marked);
        }
All Usage Examples Of Imgur.API.Endpoints.Impl.NotificationEndpoint::MarkNotificationsViewedAsync