Tests.Setup.DefaultDispatcher_ExecutionFinished C# (CSharp) Method

DefaultDispatcher_ExecutionFinished() static private method

static private DefaultDispatcher_ExecutionFinished ( object sender, ExecutionEventArgs e ) : void
sender object
e ExecutionEventArgs
return void
        static void DefaultDispatcher_ExecutionFinished(object sender, ExecutionEventArgs e)
        {
            Debug.WriteLine("******");
            Debug.WriteLine($"Execution finished: {e.ExecutionDetails.OperationName}. Duration: {e.Duration.Value.TotalSeconds.ToString("N3")} sec. Rows affected: {(e.RowsAffected != null ? e.RowsAffected.Value.ToString("N0") : "<NULL>")}.");
            //WriteDetails(e);
        }