Class AnalysisStatistics
This class represents analysis statistics for a section of content.
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Sdl.ProjectAutomation.Core
Assembly: Sdl.ProjectAutomation.Core.dll
Syntax
public class AnalysisStatistics : WordCountStatistics
Constructors
AnalysisStatistics()
Declaration
public AnalysisStatistics()
Properties
AnalysisStatus
Gets the status of these statistics.
Declaration
public ValueStatus AnalysisStatus { get; }
Property Value
Type | Description |
---|---|
ValueStatus |
Exact
Gets the statistics for the 100% analysis category.
Declaration
public CountData Exact { get; }
Property Value
Type | Description |
---|---|
CountData |
Fuzzy
Gets an array of analysis bands containing statistics for the fuzzy analysis categories.
Declaration
public FuzzyCountData[] Fuzzy { get; }
Property Value
Type | Description |
---|---|
FuzzyCountData[] |
InContextExact
Gets the statistics for the Context Match (either source or source-target context match) analysis category.
Declaration
public CountData InContextExact { get; }
Property Value
Type | Description |
---|---|
CountData |
New
Gets the statistics for the new analysis category (a.k.a untranslated, no match).
Declaration
public CountData New { get; }
Property Value
Type | Description |
---|---|
CountData |
Perfect
Gets the statistics for the PerfectMatch(TM) analysis category.
Declaration
public CountData Perfect { get; }
Property Value
Type | Description |
---|---|
CountData |