SyntaxRemoveOptions Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
This enumeration supports a bitwise combination of its member values.
public enum class SyntaxRemoveOptions
[System.Flags]
public enum SyntaxRemoveOptions
[<System.Flags>]
type SyntaxRemoveOptions =
Public Enum SyntaxRemoveOptions
- Inheritance
-
SyntaxRemoveOptions
- Attributes
Fields
AddElasticMarker | 32 | Adds elastic marker trivia |
KeepDirectives | 8 | All directives are kept |
KeepEndOfLine | 16 | Ensure that at least one EndOfLine trivia is kept if one was present |
KeepExteriorTrivia | 3 | The leading and trailing trivia associated with the node or token is kept. |
KeepLeadingTrivia | 1 | The leading trivia associated with the node or token is kept. |
KeepNoTrivia | 0 | None of the trivia associated with the node or token is kept. |
KeepTrailingTrivia | 2 | The trailing trivia associated with the node or token is kept. |
KeepUnbalancedDirectives | 4 | Any directives that would become unbalanced are kept. |