SymbolDisplayKindOptions 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 which kind keywords should be included when displaying symbols.
This enumeration supports a bitwise combination of its member values.
public enum class SymbolDisplayKindOptions
[System.Flags]
public enum SymbolDisplayKindOptions
[<System.Flags>]
type SymbolDisplayKindOptions =
Public Enum SymbolDisplayKindOptions
- Inheritance
-
SymbolDisplayKindOptions
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | Omits all kind keywords. |
IncludeNamespaceKeyword | 1 | Includes the |
IncludeTypeKeyword | 2 | Includes the type keyword before types. For example, "class C" in C# or "Structure S" in Visual Basic. |
IncludeMemberKeyword | 4 | Include the member keyword before members (if one exists). For example, "event D E" in C# or "Function MyFun()" in Visual Basic. |