/// <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.NotifyErrorMessageReceivedStarting), message.MessageFunction, message.FromHerId, message.ToHerId, message.MessageId); MessagingNotification.NotifyErrorMessageReceivedStarting(message); Logger.LogAfterNotificationHandler(nameof(MessagingNotification.NotifyErrorMessageReceivedStarting), message.MessageFunction, message.FromHerId, message.ToHerId, message.MessageId); }
/// <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.NotifyErrorMessageReceivedStarting(message); }