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
Examples
extractor.Progress += (sender, e) =>
{
if (e.Phase == ExtractionPhase.Completed)
Console.WriteLine("Done!");
};