SymbolKind 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 possible kinds of symbols.
public enum class SymbolKind
public enum SymbolKind
type SymbolKind =
Public Enum SymbolKind
- Inheritance
-
SymbolKind
Fields
Name | Value | Description |
---|---|---|
Alias | 0 | Symbol is an alias. |
ArrayType | 1 | Symbol is an array type. |
Assembly | 2 | Symbol is an assembly. |
DynamicType | 3 | Symbol is a dynamic type. |
ErrorType | 4 | Symbol that represents an error |
Event | 5 | Symbol is an Event. |
Field | 6 | Symbol is a field. |
Label | 7 | Symbol is a label. |
Local | 8 | Symbol is a local. |
Method | 9 | Symbol is a method. |
NetModule | 10 | Symbol is a netmodule. |
NamedType | 11 | Symbol is a named type (e.g. class). |
Namespace | 12 | Symbol is a namespace. |
Parameter | 13 | Symbol is a parameter. |
PointerType | 14 | Symbol is a pointer type. |
Property | 15 | Symbol is a property. |
RangeVariable | 16 | Symbol is a range variable of a query expression. |
TypeParameter | 17 | Symbol is a type parameter. |
Preprocessing | 18 | Symbol is a preprocessing/conditional compilation constant. |
Discard | 19 | Symbol represents a value that is discarded, e.g. in M(out _) |
FunctionPointerType | 20 | Symbol represents a function pointer type |