Beispiel #1
0
        private async Task ModifyAsync(bool isMuted)
        {
            var model = await _client.RequestClient.SendAsync <Model>("/v2/chats", HttpMethod.Post, new MutedParameter
            {
                IsMuted = isMuted
            }).ConfigureAwait(false);

            _model = model;
        }
Beispiel #2
0
 internal Chat(Model model, PushBulletClient client)
 {
     _model  = model;
     _client = client;
 }