Class TSAnalyzerEventArgs
- Namespace
- VisioForge.Core.Types.X
- Assembly
- VisioForge.Core.dll
Provides data for the TSAnalyzerBlock.OnAnalysisUpdated event.
public class TSAnalyzerEventArgs : EventArgsInheritance
Inherited Members
Constructors
TSAnalyzerEventArgs(TSAnalyzerReport, bool)
Initializes a new instance of the VisioForge.Core.Types.X.TSAnalyzerEventArgs class.
public TSAnalyzerEventArgs(TSAnalyzerReport report, bool isFinal)Parameters
reportTSAnalyzerReport-
The analysis report snapshot.
isFinalbool-
Whether this is the final end-of-stream report.
Properties
IsFinal
Gets a value indicating whether this is the final report (raised at end-of-stream), as opposed to a periodic update.
public bool IsFinal { get; }Property Value
Report
Gets the analysis report snapshot.
public TSAnalyzerReport Report { get; }