Property TotalPasses
- Namespace
- LMKit.Extraction
- Assembly
- LM-Kit.NET.dll
TotalPasses
Gets the total number of extraction passes to process. Only meaningful during Extracting.
public int TotalPasses { get; }
Property Value
Examples
extractor.Progress += (sender, e) =>
{
if (e.Phase == ExtractionPhase.Extracting)
Console.WriteLine($"Pass {e.PassIndex + 1} of {e.TotalPasses}");
};