Exemplo n.º 1
0
        public async Task <LastResponse> AddShoutAsync(string artistname, string message)
        {
            var command = new AddShoutCommand(Auth, artistname, message)
            {
                HttpClient = HttpClient
            };

            return(await command.ExecuteAsync());
        }
Exemplo n.º 2
0
        public async Task <LastResponse> AddShoutAsync(string recipient, string message)
        {
            var command = new AddShoutCommand(Auth, recipient, message);

            return(await command.ExecuteAsync());
        }
Exemplo n.º 3
0
        public async Task<LastResponse> AddShoutAsync(string artistname, string message)
        {
            var command = new AddShoutCommand(Auth, artistname, message)
            {
                HttpClient = HttpClient
            };

            return await command.ExecuteAsync();
        }