38 references to NavigateToItemKind
Microsoft.CodeAnalysis.Features (38)
NavigateTo\AbstractNavigateToSearchService.cs (12)
18NavigateToItemKind.Class, 19NavigateToItemKind.Constant, 20NavigateToItemKind.Delegate, 21NavigateToItemKind.Enum, 22NavigateToItemKind.EnumItem, 23NavigateToItemKind.Event, 24NavigateToItemKind.Field, 25NavigateToItemKind.Interface, 26NavigateToItemKind.Method, 27NavigateToItemKind.Module, 28NavigateToItemKind.Property, 29NavigateToItemKind.Structure];
NavigateTo\AbstractNavigateToSearchService.InProcess.cs (25)
190return NavigateToItemKind.Class; 192return NavigateToItemKind.Structure; 194return NavigateToItemKind.Constant; 196return NavigateToItemKind.Delegate; 198return NavigateToItemKind.Enum; 200return NavigateToItemKind.EnumItem; 202return NavigateToItemKind.Event; 204return NavigateToItemKind.Field; 206return NavigateToItemKind.Interface; 210return NavigateToItemKind.Method; 212return NavigateToItemKind.Module; 215return NavigateToItemKind.Property; 217return NavigateToItemKind.Structure; 257case NavigateToItemKind.Class: 261case NavigateToItemKind.Constant: 265case NavigateToItemKind.Delegate: 269case NavigateToItemKind.Enum: 273case NavigateToItemKind.EnumItem: 277case NavigateToItemKind.Event: 281case NavigateToItemKind.Field: 285case NavigateToItemKind.Interface: 289case NavigateToItemKind.Method: 295case NavigateToItemKind.Module: 299case NavigateToItemKind.Property: 304case NavigateToItemKind.Structure:
NavigateTo\RoslynNavigateToItem.cs (1)
51/// Will be one of the values from <see cref="NavigateToItemKind"/>.