Table of Contents

Property PassIndex

Namespace
LMKit.Extraction
Assembly
LM-Kit.NET.dll

PassIndex

Gets the zero-based index of the current extraction pass. Only meaningful during Extracting.

public int PassIndex { get; }

Property Value

int

Examples

extractor.Progress += (sender, e) =>
{
    if (e.Phase == ExtractionPhase.Extracting)
        Console.WriteLine($"Pass {e.PassIndex + 1} of {e.TotalPasses}");
};
Share