SymbolDisplayParameterOptions 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 how parameters are displayed in the description of a (member, property/indexer, or delegate) symbol.
This enumeration supports a bitwise combination of its member values.
public enum class SymbolDisplayParameterOptions
[System.Flags]
public enum SymbolDisplayParameterOptions
[<System.Flags>]
type SymbolDisplayParameterOptions =
Public Enum SymbolDisplayParameterOptions
- Inheritance
-
SymbolDisplayParameterOptions
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | Omits parameters from symbol descriptions. If this option is combined with IncludeParameters, then only the parentheses will be shown (e.g. M()). |
IncludeExtensionThis | 1 | Includes the This option has no effect in Visual Basic. |
IncludeModifiers | 2 | Includes the |
IncludeParamsRefOut | 2 | Includes the |
IncludeType | 4 | Includes parameter types in symbol descriptions. |
IncludeName | 8 | Includes parameter names in symbol descriptions. |
IncludeDefaultValue | 16 | Includes parameter default values in symbol descriptions. Ignored if IncludeName is not set. |
IncludeOptionalBrackets | 32 | Includes square brackets around optional parameters. |