SymbolDisplayLocalOptions 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.
Specifies the options for how locals are displayed in the description of a symbol.
This enumeration supports a bitwise combination of its member values.
public enum class SymbolDisplayLocalOptions
[System.Flags]
public enum SymbolDisplayLocalOptions
[<System.Flags>]
type SymbolDisplayLocalOptions =
Public Enum SymbolDisplayLocalOptions
- Inheritance
-
SymbolDisplayLocalOptions
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | Shows only the name of the local. For example, "x". |
IncludeType | 1 | Shows the type of the local in addition to its name. For example, "int x" in C# or "x As Integer" in Visual Basic. |
IncludeConstantValue | 2 | Shows the constant value of the local, if there is one, in addition to its name. For example "x = 1". |
IncludeModifiers | 4 | Includes the |
IncludeRef | 4 | Includes the |