MigSharp.Process.MigrationBatch.OnStepExecuted C# (CSharp) 메소드

OnStepExecuted() 개인적인 메소드

private OnStepExecuted ( MigrationEventArgs e ) : void
e MigrationEventArgs
리턴 void
        private void OnStepExecuted(MigrationEventArgs e)
        {
            EventHandler<MigrationEventArgs> tmp = StepExecuted;
            if (tmp != null) tmp(this, e);
        }