'Declaration Public Enum LanguageElement Inherits System.Enum
public enum LanguageElement : System.Enum
Member | Description |
---|---|
Comment | Represents a comment, which is by default insignificant to the syntax analyzer. |
ContextSensitiveKeyword | Represents a context-sensitive keyword in a language, which is by default significant to the syntax analyzer. |
Custom | Represents content with a custom language element specified by the TerminalSymbol.LanguageElementName, which is by default significant to the syntax analyzer. |
DateLiteral | Represents a date or time literal, which is by default significant to the syntax analyzer. |
EndOfStream | Represents the Grammar.EndOfStreamSymbol, which is significant to the syntax analyzer. |
Identifier | Represents an identifier in a language, which is by default significant to the syntax analyzer. |
NewLine | Represents a newline (either \r, \n, or \r\n), which is by default insignificant to the syntax analyzer. |
NumericLiteral | Represents a numeric literal, which is by default significant to the syntax analyzer. |
Operator | Represents an operator symbol, such as +, -, >, |, etc., which is by default significant to the syntax analyzer. |
Punctuation | Represents a punctuation symbol, such as a semicolon, parentheses, braces, etc., which is by default significant to the syntax analyzer. |
ReservedKeyword | Represents a reserved keyword in a language, which is by default significant to the syntax analyzer. |
StringLiteral | Represents a string or character literal, which is by default significant to the syntax analyzer. |
Undefined | No language element is specified. |
Unrecognized | Represents content not recognized by any symbol in the active LexerState, which is significant to the syntax analyzer. |
Whitespace | Represents contiguous whitespace, which is by default insignificant to the syntax analyzer. |
Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2