39 references to NavigateToItemKind
Microsoft.CodeAnalysis.Features (39)
NavigateTo\AbstractNavigateToSearchService.cs (12)
19NavigateToItemKind.Class, 20NavigateToItemKind.Constant, 21NavigateToItemKind.Delegate, 22NavigateToItemKind.Enum, 23NavigateToItemKind.EnumItem, 24NavigateToItemKind.Event, 25NavigateToItemKind.Field, 26NavigateToItemKind.Interface, 27NavigateToItemKind.Method, 28NavigateToItemKind.Module, 29NavigateToItemKind.Property, 30NavigateToItemKind.Structure];
NavigateTo\AbstractNavigateToSearchService.InProcess.cs (26)
258return NavigateToItemKind.Class; 260return NavigateToItemKind.Structure; 262return NavigateToItemKind.Constant; 264return NavigateToItemKind.Delegate; 266return NavigateToItemKind.Enum; 268return NavigateToItemKind.EnumItem; 270return NavigateToItemKind.Event; 272return NavigateToItemKind.Field; 274return NavigateToItemKind.Interface; 278return NavigateToItemKind.Method; 280return NavigateToItemKind.Module; 283return NavigateToItemKind.Property; 288return NavigateToItemKind.Structure; 290return NavigateToItemKind.OtherSymbol; 330case NavigateToItemKind.Class: 334case NavigateToItemKind.Constant: 338case NavigateToItemKind.Delegate: 342case NavigateToItemKind.Enum: 346case NavigateToItemKind.EnumItem: 350case NavigateToItemKind.Event: 354case NavigateToItemKind.Field: 358case NavigateToItemKind.Interface: 362case NavigateToItemKind.Method: 368case NavigateToItemKind.Module: 372case NavigateToItemKind.Property: 377case NavigateToItemKind.Structure:
NavigateTo\RoslynNavigateToItem.cs (1)
51/// Will be one of the values from <see cref="NavigateToItemKind"/>.