コード例 #1
0
 private async Task SendTestMessage(Subscription subscription)
 {
     await _notificationClient.SendNotificationsAsync(
         subscription,
         new Notification {
         Title   = "Test title",
         Body    = "Test message",
         Icon    = "https://maidadur.com/assets/loli-maid.png",
         Vibrate = { 200, 100, 200 }
     });
 }