예제 #1
0
 public ActivateFromPendingNotification(IServiceProvider serviceProvider)
     : base(serviceProvider, "Click run button then close app and tap to notification", "Activation of inactive app from notification center")
 {
     this.eventSender    = serviceProvider.GetRequiredService <INotificationEventSource>();
     this.jsonSerializer = JsonSerializer.CreateDefault();
     Construct();
 }
 public ActivateFromNotificationCenter(IServiceProvider serviceProvider)
     : base(serviceProvider, "Wait when hidded and activate from notification center", "Activation of not active notification")
 {
     this.eventSender = serviceProvider.GetRequiredService <INotificationEventSource>();
 }