Imgur.API.Endpoints.Impl.ConversationEndpoint.BlockSenderAsync C# (CSharp) Method

BlockSenderAsync() public method

Block the user from sending messages to the user that is logged in. 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 BlockSenderAsync ( string username ) : Task
username string The sender that should be blocked.
return Task
        public async Task<bool> BlockSenderAsync(string username)
        {
            if (string.IsNullOrWhiteSpace(username))
                throw new ArgumentNullException(nameof(username));

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

            var url = $"conversations/block/{username}";

            using (var request = RequestBuilder.CreateRequest(HttpMethod.Post, url))
            {
                var blocked = await SendRequestAsync<bool>(request).ConfigureAwait(false);
                return blocked;
            }
        }

Usage Example

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

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