コード例 #1
0
 public async Task AddNotificationAsync(string title, string imageUrl, string text)
 {
     await growlNotifiactions.AddNotificationAsync(new Notification { ImageUrl = imageUrl, Message = text, Title = title });
 }
コード例 #2
0
 public Task AddNotificationAsync(string title, string imageUrl, string text)
 {
     return(_growlNotifiactions.AddNotificationAsync(new ViewModel.Notification {
         ImageUrl = imageUrl, Message = text, Title = title
     }));
 }