Class NcNoteCache
Cache for notes and warnings generated during NC line parsing.
public class NcNoteCache
- Inheritance
-
NcNoteCache
- Inherited Members
- Extension Methods
Properties
IndexNote
Gets or sets the index note (N number) from the NC line.
public int? IndexNote { get; set; }
Property Value
- int?
SkippedFlags
Known flags and sure to skip.
public List<string> SkippedFlags { get; set; }
Property Value
Text
Gets a text representation of all non-empty flag lists.
public string Text { get; }
Property Value
UnExpectedFlags
known flags but not shown on an expected way.
public List<string> UnExpectedFlags { get; set; }
Property Value
UnSupportedFlags
Known flags but not support.
public List<string> UnSupportedFlags { get; set; }
Property Value
UnknownFlags
Unknown flags.
public List<string> UnknownFlags { get; set; }
Property Value
Warnings
Gets or sets the list of warnings generated during parsing.
public List<string> Warnings { get; set; }