39 references to NavigateToItemKind
Microsoft.CodeAnalysis.Features (39)
NavigateTo\AbstractNavigateToSearchService.cs (12)
20NavigateToItemKind.Class, 21NavigateToItemKind.Constant, 22NavigateToItemKind.Delegate, 23NavigateToItemKind.Enum, 24NavigateToItemKind.EnumItem, 25NavigateToItemKind.Event, 26NavigateToItemKind.Field, 27NavigateToItemKind.Interface, 28NavigateToItemKind.Method, 29NavigateToItemKind.Module, 30NavigateToItemKind.Property, 31NavigateToItemKind.Structure];
NavigateTo\AbstractNavigateToSearchService.InProcess.cs (26)
191return NavigateToItemKind.Class; 193return NavigateToItemKind.Structure; 195return NavigateToItemKind.Constant; 197return NavigateToItemKind.Delegate; 199return NavigateToItemKind.Enum; 201return NavigateToItemKind.EnumItem; 203return NavigateToItemKind.Event; 205return NavigateToItemKind.Field; 207return NavigateToItemKind.Interface; 211return NavigateToItemKind.Method; 213return NavigateToItemKind.Module; 216return NavigateToItemKind.Property; 218return NavigateToItemKind.Structure; 220return NavigateToItemKind.OtherSymbol; 260case NavigateToItemKind.Class: 264case NavigateToItemKind.Constant: 268case NavigateToItemKind.Delegate: 272case NavigateToItemKind.Enum: 276case NavigateToItemKind.EnumItem: 280case NavigateToItemKind.Event: 284case NavigateToItemKind.Field: 288case NavigateToItemKind.Interface: 292case NavigateToItemKind.Method: 298case NavigateToItemKind.Module: 302case NavigateToItemKind.Property: 307case NavigateToItemKind.Structure:
NavigateTo\RoslynNavigateToItem.cs (1)
51/// Will be one of the values from <see cref="NavigateToItemKind"/>.