Axiom.Documentation.BuildProcess.BuildCompleted C# (CSharp) Метод

BuildCompleted() публичный Метод

Called after the project's help build has finished.
The BuildContext.Cancel method has no affect at this point in the build process. This method is the final step before the build statistics are displayed.

This method is always invoked if BuildStarting is invoked, regardless of whether an exception is thrown in any of the other methods, BuildContext.Cancel has been called, or an exeception has been thrown by the build engine.

To determine whether a help build failed or succeeded, examine the value of the BuildContext.BuildState property.

public BuildCompleted ( BuildContext context ) : void
context BuildContext Provides information about the build process.
Результат void
        public override void BuildCompleted(BuildContext context)
        {
            TraceLine();
            TraceLine("Total Time Elapsed: {0}", DateTime.Now - buildStart);
        }
    }