A callback function that receives notification when a build completes.
MSBuild is now included in Visual Studio instead of the .NET Framework. You can use MSBuild 12.0 side-by-side with versions previously deployed with the .NET Framework.For more information, see What's New in MSBuild 12.0.
Namespace:  Microsoft.Build.Execution
Assembly:  Microsoft.Build (in Microsoft.Build.dll)
Syntax
'Declaration
Public Delegate Sub BuildSubmissionCompleteCallback ( _
    submission As BuildSubmission _
)
public delegate void BuildSubmissionCompleteCallback(
    BuildSubmission submission
)
public delegate void BuildSubmissionCompleteCallback(
    BuildSubmission^ submission
)
type BuildSubmissionCompleteCallback = 
    delegate of  
        submission:BuildSubmission -> unit
JScript does not support delegates.
Parameters
- submission 
 Type: Microsoft.Build.Execution.BuildSubmission- The submission that initiates the build. 
Remarks
When this delegate is invoked, the WaitHandle on the BuildSubmission will have been be signaled and the OverallResult will be valid.