Beispiel #1
0
        protected virtual void OnHandlerExecuted(ExecutionPipelineExecutedEventArgs args)
        {
            var executed = this.HandlerExecuted;

            if (executed != null)
            {
                executed(this, args);
            }
        }
        protected virtual void OnExecuted(ExecutionPipelineExecutedEventArgs e)
        {
            var executed = this.Executed;

            if (executed != null)
            {
                executed(this, e);
            }
        }