Class DocumentLqaStatistics
The LQA statistics for a document.
Syntax
public class DocumentLqaStatistics
Fields
DocumentName
The name of the document.
Declaration
public string DocumentName
Type
StringModelGuid
The GUID of the LQA model.
Declaration
public Guid ModelGuid
Type
GuidNormalizedPenaltyPoint
Penalty point normalized by number of words.
Declaration
public double NormalizedPenaltyPoint
Type
DoubleNormalizedPenaltyPointsBySeverities
Penalty points by severities normalized by number of words.
Declaration
public Dictionary<string, double> NormalizedPenaltyPointsBySeverities
Type
Dictionary<String, Double>NormalizedValuesForRuleList
Normalized values for rules. Each value corresponds to a specific rule.
Declaration
public List<double> NormalizedValuesForRuleList
Type
List<Double>NumberOfRejectedSegments
The total number of rejected segments in the document.
Declaration
public int NumberOfRejectedSegments
Type
Int32NumberOfSegments
The total number of segments in the document.
Declaration
public int NumberOfSegments
Type
Int32NumberOfWords
The total number of words in the document.
Declaration
public int NumberOfWords
Type
Int32Passed
Indicates that the document has passed the LQA criteria.
Declaration
public bool Passed
Type
BooleanPenaltyPointsPerCategories
Tells how many penalty points were given for each category (subcategories are included). Categories are identified by category name.
Declaration
public HashSet<PenaltyPointsForCategory> PenaltyPointsPerCategories
Type
HashSet<PenaltyPointsForCategory>TotalNumberOfErrors
The total number of LQA errors.
Declaration
public int TotalNumberOfErrors
Type
Int32TotalNumberOfErrorsByCategories
Total number of errors by categories.
Declaration
public Dictionary<string, int> TotalNumberOfErrorsByCategories
Type
Dictionary<String, Int32>TotalNumberOfErrorsBySeverities
Total number of errors by severities.
Declaration
public Dictionary<string, int> TotalNumberOfErrorsBySeverities
Type
Dictionary<String, Int32>TotalPenaltyPoints
Total penalty points.
Declaration
public int TotalPenaltyPoints
Type
Int32TotalsOfCategoriesPerSeverities
Number of errors of main categories per severities.
Declaration
public HashSet<NumberOfErrorsPerSeveritiesForCategory> TotalsOfCategoriesPerSeverities