Table of Contents

Property Phase

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

Phase

Gets the current phase of the extraction operation.

public ExtractionPhase Phase { get; }

Property Value

ExtractionPhase

Examples

extractor.Progress += (sender, e) =>
{
    if (e.Phase == ExtractionPhase.Completed)
        Console.WriteLine("Done!");
};
Share