Table of Contents

Class TSAnalyzerEventArgs

Namespace
VisioForge.Core.Types.X
Assembly
VisioForge.Core.dll

Provides data for the TSAnalyzerBlock.OnAnalysisUpdated event.

public class TSAnalyzerEventArgs : EventArgs

Inheritance

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

report TSAnalyzerReport

The analysis report snapshot.

isFinal bool

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

bool

Report

Gets the analysis report snapshot.

public TSAnalyzerReport Report { get; }

Property Value

TSAnalyzerReport