예제 #1
0
 private void OnNotificationRecieved(Logging.NotificationMessage notification)
 {
     if (NotificationRecieved != null)
     {
         NotificationRecieved(notification);
     }
 }
예제 #2
0
 private void ExtensionReadyCallback(ReadyParams ready)
 {
     executive = ready.CommandExecutive;
     Assert.IsTrue(ready.WorkspaceModels.Any());
     Assert.IsNotNull(ready.CurrentWorkspaceModel);
     ready.NotificationRecieved += (Logging.NotificationMessage obj) => message = obj;
 }
예제 #3
0
 private void ExtensionReadyCallback(ReadyParams ready)
 {
     executive = ready.CommandExecutive;
     Assert.IsTrue(ready.WorkspaceModels.Any());
     Assert.IsNotNull(ready.CurrentWorkspaceModel);
     ready.NotificationRecieved += (Logging.NotificationMessage obj) => message = obj;
 }
예제 #4
0
 private void OnNotificationRecieved(Logging.NotificationMessage notification)
 {
     NotificationRecieved?.Invoke(notification);
 }