105 references to NavigateToItemKind
Microsoft.CodeAnalysis.ExternalAccess.FSharp (15)
NavigateTo\FSharpNavigateToItemKind.cs (15)
13
public static string Line =>
NavigateToItemKind
.Line;
14
public static string File =
NavigateToItemKind
.File;
15
public static string Class =>
NavigateToItemKind
.Class;
16
public static string Structure =>
NavigateToItemKind
.Structure;
17
public static string Interface =>
NavigateToItemKind
.Interface;
18
public static string Delegate =>
NavigateToItemKind
.Delegate;
19
public static string Enum =>
NavigateToItemKind
.Enum;
20
public static string Module =>
NavigateToItemKind
.Module;
21
public static string Constant =>
NavigateToItemKind
.Constant;
22
public static string EnumItem =>
NavigateToItemKind
.EnumItem;
23
public static string Field =>
NavigateToItemKind
.Field;
24
public static string Method =>
NavigateToItemKind
.Method;
25
public static string Property =>
NavigateToItemKind
.Property;
26
public static string Event =>
NavigateToItemKind
.Event;
27
public static string OtherSymbol =>
NavigateToItemKind
.OtherSymbol;
Microsoft.CodeAnalysis.Features (38)
NavigateTo\AbstractNavigateToSearchService.cs (12)
15
NavigateToItemKind
.Class,
16
NavigateToItemKind
.Constant,
17
NavigateToItemKind
.Delegate,
18
NavigateToItemKind
.Enum,
19
NavigateToItemKind
.EnumItem,
20
NavigateToItemKind
.Event,
21
NavigateToItemKind
.Field,
22
NavigateToItemKind
.Interface,
23
NavigateToItemKind
.Method,
24
NavigateToItemKind
.Module,
25
NavigateToItemKind
.Property,
26
NavigateToItemKind
.Structure);
NavigateTo\AbstractNavigateToSearchService.InProcess.cs (25)
234
return
NavigateToItemKind
.Class;
236
return
NavigateToItemKind
.Structure;
238
return
NavigateToItemKind
.Constant;
240
return
NavigateToItemKind
.Delegate;
242
return
NavigateToItemKind
.Enum;
244
return
NavigateToItemKind
.EnumItem;
246
return
NavigateToItemKind
.Event;
248
return
NavigateToItemKind
.Field;
250
return
NavigateToItemKind
.Interface;
254
return
NavigateToItemKind
.Method;
256
return
NavigateToItemKind
.Module;
259
return
NavigateToItemKind
.Property;
261
return
NavigateToItemKind
.Structure;
301
case
NavigateToItemKind
.Class:
305
case
NavigateToItemKind
.Constant:
309
case
NavigateToItemKind
.Delegate:
313
case
NavigateToItemKind
.Enum:
317
case
NavigateToItemKind
.EnumItem:
321
case
NavigateToItemKind
.Event:
325
case
NavigateToItemKind
.Field:
329
case
NavigateToItemKind
.Interface:
333
case
NavigateToItemKind
.Method:
339
case
NavigateToItemKind
.Module:
343
case
NavigateToItemKind
.Property:
348
case
NavigateToItemKind
.Structure:
NavigateTo\RoslynNavigateToItem.cs (1)
42
/// Will be one of the values from <see cref="
NavigateToItemKind
"/>.
Microsoft.CodeAnalysis.LanguageServer.Protocol (15)
Extensions\ProtocolConversions.cs (3)
405
case
NavigateToItemKind
.EnumItem:
407
case
NavigateToItemKind
.Structure:
409
case
NavigateToItemKind
.Delegate:
Handler\Symbols\WorkspaceSymbolsHandler.cs (12)
28
NavigateToItemKind
.Class,
29
NavigateToItemKind
.Constant,
30
NavigateToItemKind
.Delegate,
31
NavigateToItemKind
.Enum,
32
NavigateToItemKind
.EnumItem,
33
NavigateToItemKind
.Event,
34
NavigateToItemKind
.Field,
35
NavigateToItemKind
.Interface,
36
NavigateToItemKind
.Method,
37
NavigateToItemKind
.Module,
38
NavigateToItemKind
.Property,
39
NavigateToItemKind
.Structure);
Microsoft.VisualStudio.LanguageServices (37)
NavigateTo\RoslynNavigateToSearchCallback.cs (13)
103
NavigateToItemKind
.Class => CodeSearchResultType.Class,
104
NavigateToItemKind
.Constant => CodeSearchResultType.Constant,
105
NavigateToItemKind
.Delegate => CodeSearchResultType.Delegate,
106
NavigateToItemKind
.Enum => CodeSearchResultType.Enum,
107
NavigateToItemKind
.EnumItem => CodeSearchResultType.EnumItem,
108
NavigateToItemKind
.Event => CodeSearchResultType.Event,
109
NavigateToItemKind
.Field => CodeSearchResultType.Field,
110
NavigateToItemKind
.Interface => CodeSearchResultType.Interface,
111
NavigateToItemKind
.Method => CodeSearchResultType.Method,
112
NavigateToItemKind
.Module => CodeSearchResultType.Module,
113
NavigateToItemKind
.OtherSymbol => CodeSearchResultType.OtherSymbol,
114
NavigateToItemKind
.Property => CodeSearchResultType.Property,
115
NavigateToItemKind
.Structure => CodeSearchResultType.Structure,
NavigateTo\RoslynSearchItemsSource.cs (12)
24
.Add(
NavigateToItemKind
.Class)
25
.Add(
NavigateToItemKind
.Enum)
26
.Add(
NavigateToItemKind
.Structure)
27
.Add(
NavigateToItemKind
.Interface)
28
.Add(
NavigateToItemKind
.Delegate)
29
.Add(
NavigateToItemKind
.Module);
31
.Add(
NavigateToItemKind
.Constant)
32
.Add(
NavigateToItemKind
.EnumItem)
33
.Add(
NavigateToItemKind
.Field)
34
.Add(
NavigateToItemKind
.Method)
35
.Add(
NavigateToItemKind
.Property)
36
.Add(
NavigateToItemKind
.Event);
Progression\GraphBuilder.cs (12)
711
NavigateToItemKind
.Class => CodeNodeCategories.Class,
712
NavigateToItemKind
.Delegate => CodeNodeCategories.Delegate,
713
NavigateToItemKind
.Enum => CodeNodeCategories.Enum,
714
NavigateToItemKind
.Interface => CodeNodeCategories.Interface,
715
NavigateToItemKind
.Module => CodeNodeCategories.Module,
716
NavigateToItemKind
.Structure => CodeNodeCategories.Struct,
717
NavigateToItemKind
.Method => CodeNodeCategories.Method,
718
NavigateToItemKind
.Property => CodeNodeCategories.Property,
719
NavigateToItemKind
.Event => CodeNodeCategories.Event,
720
NavigateToItemKind
.Constant or
721
NavigateToItemKind
.EnumItem or
722
NavigateToItemKind
.Field => CodeNodeCategories.Field,