Exemplo n.º 1
0
        // Wrap event invocations inside a protected virtual method
        // to allow derived classes to override the event invocation behavior
        private static void OnRaiseActivityEvent(IActivitySender sender, ActivityEventArgs args)
        {
            //// Make a temporary copy of the event to avoid possibility of
            //// a race condition if the last subscriber unsubscribes
            //// immediately after the null check and before the event is raised.
            //EventHandler<ActivityEventArgs> handler = RaiseActivityEvent;

            //// Event will be null if there are no subscribers
            //if (handler != null)
            //{
            //    //// Format the string to send inside the CustomEventArgs parameter
            //    //e.Message += $" at {DateTime.Now}";

            //    // Use the () operator to raise the event.
            //    handler(sender, e);
            //}
            ActivityEvent?.Invoke(sender, args);
        }
Exemplo n.º 2
0
        public static void Publish(IActivitySender sender, ActivityEventArgs.ActivityEnum activity, CurrentConn currentConnection)
        {
            ActivityEventArgs args = new ActivityEventArgs(activity, currentConnection);

            OnRaiseActivityEvent(sender, args);
        }