Class DocumentLqaStatistics
The LQA statistics for a document.
Inheritance
Syntax
public class DocumentLqaStatistics
Fields
DocumentName
The name of the document.
Declaration
public string DocumentName
Type
System.StringModelGuid
The GUID of the LQA model.
Declaration
public Guid ModelGuid
Type
System.GuidNormalizedPenaltyPoint
Penalty point normalized by number of words.
Declaration
public double NormalizedPenaltyPoint
Type
System.DoubleNormalizedPenaltyPointsBySeverities
Penalty points by severities normalized by number of words.
Declaration
public Dictionary<string, double> NormalizedPenaltyPointsBySeverities
Type
System.Collections.Generic.Dictionary<System.String, System.Double>NormalizedValuesForRuleList
Normalized values for rules. Each value corresponds to a specific rule.
Declaration
public List<double> NormalizedValuesForRuleList
Type
System.Collections.Generic.List<System.Double>NumberOfRejectedSegments
The total number of rejected segments in the document.
Declaration
public int NumberOfRejectedSegments
Type
System.Int32NumberOfSegments
The total number of segments in the document.
Declaration
public int NumberOfSegments
Type
System.Int32NumberOfWords
The total number of words in the document.
Declaration
public int NumberOfWords
Type
System.Int32Passed
Indicates that the document has passed the LQA criteria.
Declaration
public bool Passed
Type
System.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
System.Int32TotalNumberOfErrorsByCategories
Total number of errors by categories.
Declaration
public Dictionary<string, int> TotalNumberOfErrorsByCategories
Type
System.Collections.Generic.Dictionary<System.String, System.Int32>TotalNumberOfErrorsBySeverities
Total number of errors by severities.
Declaration
public Dictionary<string, int> TotalNumberOfErrorsBySeverities
Type
System.Collections.Generic.Dictionary<System.String, System.Int32>TotalPenaltyPoints
Total penalty points.
Declaration
public int TotalPenaltyPoints
Type
System.Int32TotalsOfCategoriesPerSeverities
Number of errors of main categories per severities.
Declaration
public HashSet<NumberOfErrorsPerSeveritiesForCategory> TotalsOfCategoriesPerSeverities