/// <summary>
 /// Called prior to message processing
 /// </summary>
 /// <param name="message">Reference to the incoming message. Some fields may not have values since they get populated later in the processing pipeline.</param>
 protected override void NotifyMessageProcessingStarted(IncomingMessage message)
 {
     MessagingNotification.NotifySynchronousMessageReceivedStarting(message);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Called prior to message processing
 /// </summary>
 /// <param name="message">Reference to the incoming message. Some fields may not have values since they get populated later in the processing pipeline.</param>
 protected override void NotifyMessageProcessingStarted(IncomingMessage message)
 {
     Logger.LogBeforeNotificationHandler(nameof(MessagingNotification.NotifySynchronousMessageReceivedStarting), message.MessageFunction, message.FromHerId, message.ToHerId, message.MessageId);
     MessagingNotification.NotifySynchronousMessageReceivedStarting(message);
     Logger.LogAfterNotificationHandler(nameof(MessagingNotification.NotifySynchronousMessageReceivedStarting), message.MessageFunction, message.FromHerId, message.ToHerId, message.MessageId);
 }