Class ExtractionProgress
Information about the progress of an asynchronous extraction operation.
Used to report progress to the caller during long-running extraction operations.
Inheritance
Namespace: IronPdf.Extractions
Assembly: IronPdf.dll
Syntax
public class ExtractionProgress : Object
ExtractionProgress is the object IronPDF C# code works with for text extraction. It represents information about the progress of an asynchronous extraction operation.
ExtractionProgress matters when an application needs to configure or invoke text extraction from C# code. The class encapsulates the related options and behavior in a single object that is set up once and reused across render or processing calls. Typical scenarios include batch generation pipelines, templated document workflows, and integration with existing C# document services.
To use ExtractionProgress, instantiate or obtain it from the relevant entry point in the IronPDF C# API. Key properties include CurrentOperation, CurrentPage, PercentComplete, TablesFound. Assign options or invoke methods on the instance to configure or perform the operation.
using IronPdf;
var instance = new ExtractionProgress();
var current = instance.CurrentOperation;
// Read or assign other properties such as CurrentPage, PercentCompleteFor the broader workflow, see the IronPDF C# documentation for related how-to guides and examples. For broader context, the text extraction portion of the IronPDF C# API contains related types that work with ExtractionProgress directly. ExtractionProgress exposes additional members beyond those highlighted above; the reference tables on this page list the full set. In application code, treat ExtractionProgress as a configured object that is constructed once and reused across operations rather than instantiated per call. Configuration is generally idempotent: assigning the same property value twice has the same effect as assigning it once. For diagnostic purposes, inspect the relevant ExtractionProgress property after each operation to confirm the configured state. See the constructors, properties, and methods tables below for the complete API surface of ExtractionProgress. Application code typically obtains or instantiates a single ExtractionProgress and shares it across multiple IronPDF operations rather than recreating it per call.
Constructors
ExtractionProgress()
Declaration
public ExtractionProgress()
Properties
CurrentOperation
Description of the current operation
Declaration
public string CurrentOperation { get; }
Property Value
| Type | Description |
|---|---|
| System.String |
CurrentPage
Current page being processed
Declaration
public int CurrentPage { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
PercentComplete
Percentage of completion
Calculated as CurrentPage / TotalPages * 100.
Declaration
public double PercentComplete { get; }
Property Value
| Type | Description |
|---|---|
| System.Double |
TablesFound
Number of tables found so far
Declaration
public int TablesFound { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
TotalPages
Total number of pages to process
Declaration
public int TotalPages { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |