private void OnApplicationNotFoundEventReceived(ApplicationNotFoundEvent applicationNotFoundEvent)
 {
     //TODO:  Think about if this is the right solution
     // NOTE: _startRequest contains the sessionid which is probably expired by this time.
     if (_sender.ApplicationId.Equals(applicationNotFoundEvent.ApplicationId))
     {
         HandleCriticalError(ErrorMessages.ApplicationIDNotFound, applicationNotFoundEvent.ApplicationId);
     }
 }
Example #2
0
 private void OnApplicationNotFoundEventReceived(ApplicationNotFoundEvent applicationNotFoundEvent)
 {
     //TODO:  Think about if this is the right solution
     // NOTE: _startRequest contains the sessionid which is probably expired by this time.
     if (_sender.ApplicationId.Equals(applicationNotFoundEvent.ApplicationId))
     {
         HandleCriticalError(ErrorMessages.ApplicationIDNotFound, applicationNotFoundEvent.ApplicationId);
     }
 }