Version Builder Plug InReport Method
This is called by the build process to report build progress for the reference link projects
Definition
Namespace: SandcastleBuilder.PlugIns
Assembly: SandcastleBuilder.PlugIns (in SandcastleBuilder.PlugIns.dll) Version: 2026.3.29.0
Assembly: SandcastleBuilder.PlugIns (in SandcastleBuilder.PlugIns.dll) Version: 2026.3.29.0
C#
public void Report(
BuildProgressEventArgs value
)VB
Public Sub Report (
value As BuildProgressEventArgs
)C++
public:
virtual void Report(
BuildProgressEventArgs^ value
) sealedF#
abstract Report :
value : BuildProgressEventArgs -> unit
override Report :
value : BuildProgressEventArgs -> unit Parameters
- value BuildProgressEventArgs
- The event arguments
Implements
IProgressTReport(T)Remarks
Since the build is synchronous in this plug-in, we need to implement the interface and
report progress synchronously as well or the final few messages can get lost and it looks like the
build failed.