> ## Documentation Index
> Fetch the complete documentation index at: https://docs.abbyy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# IBatchTypeClassifierResult

> IBatchTypeClassifierResult returns the outcome of batch type page classification, including the ClassName assigned to a page and class confidences.

## What it does

Gets the confidence level.

<Note>
  This object is not available on the Web Verification Station for checking rules locally.
</Note>

## Properties

| **Name**  | **Type** | **Access** | **Description**                                                 |
| --------- | -------- | ---------- | --------------------------------------------------------------- |
| ClassName | string   | Read-only  | The class name given to the page as a result of classification. |

## Show class confidences for a page

This sample classifies a page and shows the confidence for each candidate class:

```csharp theme={null}
IBatchTypeClassifierResult res = BatchTypeClassifier.ClassifyPage( Page );
IClassConfidences classVars = res.Classes;
foreach( IClassConfidence c in classVars )
{
    FCTools.ShowMessage( c.Name + " --> " + c.Confidence.ToString() );
}
```
