SymbolDisplayKindOptions Enum

Definition

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

IncludeMemberKeyword 4

Include the member keyword before members (if one exists). For example, "event D E" in C# or "Function MyFun()" in Visual Basic.

IncludeNamespaceKeyword 1

Includes the namespace keyword before namespaces. For example, "namespace System", rather than "System".

IncludeTypeKeyword 2

Includes the type keyword before types. For example, "class C" in C# or "Structure S" in Visual Basic.

None 0

Omits all kind keywords.

Applies to