94 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 (39)
NavigateTo\AbstractNavigateToSearchService.cs (12)
19
NavigateToItemKind
.Class,
20
NavigateToItemKind
.Constant,
21
NavigateToItemKind
.Delegate,
22
NavigateToItemKind
.Enum,
23
NavigateToItemKind
.EnumItem,
24
NavigateToItemKind
.Event,
25
NavigateToItemKind
.Field,
26
NavigateToItemKind
.Interface,
27
NavigateToItemKind
.Method,
28
NavigateToItemKind
.Module,
29
NavigateToItemKind
.Property,
30
NavigateToItemKind
.Structure];
NavigateTo\AbstractNavigateToSearchService.InProcess.cs (26)
258
return
NavigateToItemKind
.Class;
260
return
NavigateToItemKind
.Structure;
262
return
NavigateToItemKind
.Constant;
264
return
NavigateToItemKind
.Delegate;
266
return
NavigateToItemKind
.Enum;
268
return
NavigateToItemKind
.EnumItem;
270
return
NavigateToItemKind
.Event;
272
return
NavigateToItemKind
.Field;
274
return
NavigateToItemKind
.Interface;
278
return
NavigateToItemKind
.Method;
280
return
NavigateToItemKind
.Module;
283
return
NavigateToItemKind
.Property;
288
return
NavigateToItemKind
.Structure;
290
return
NavigateToItemKind
.OtherSymbol;
330
case
NavigateToItemKind
.Class:
334
case
NavigateToItemKind
.Constant:
338
case
NavigateToItemKind
.Delegate:
342
case
NavigateToItemKind
.Enum:
346
case
NavigateToItemKind
.EnumItem:
350
case
NavigateToItemKind
.Event:
354
case
NavigateToItemKind
.Field:
358
case
NavigateToItemKind
.Interface:
362
case
NavigateToItemKind
.Method:
368
case
NavigateToItemKind
.Module:
372
case
NavigateToItemKind
.Property:
377
case
NavigateToItemKind
.Structure:
NavigateTo\RoslynNavigateToItem.cs (1)
51
/// Will be one of the values from <see cref="
NavigateToItemKind
"/>.
Microsoft.CodeAnalysis.LanguageServer.Protocol (15)
Extensions\ProtocolConversions.cs (3)
628
case
NavigateToItemKind
.EnumItem:
630
case
NavigateToItemKind
.Structure:
632
case
NavigateToItemKind
.Delegate:
Handler\Symbols\WorkspaceSymbolsHandler.cs (12)
31
NavigateToItemKind
.Class,
32
NavigateToItemKind
.Constant,
33
NavigateToItemKind
.Delegate,
34
NavigateToItemKind
.Enum,
35
NavigateToItemKind
.EnumItem,
36
NavigateToItemKind
.Event,
37
NavigateToItemKind
.Field,
38
NavigateToItemKind
.Interface,
39
NavigateToItemKind
.Method,
40
NavigateToItemKind
.Module,
41
NavigateToItemKind
.Property,
42
NavigateToItemKind
.Structure
Microsoft.VisualStudio.LanguageServices (25)
NavigateTo\RoslynNavigateToSearchCallback.cs (13)
116
NavigateToItemKind
.Class => CodeSearchResultType.Class,
117
NavigateToItemKind
.Constant => CodeSearchResultType.Constant,
118
NavigateToItemKind
.Delegate => CodeSearchResultType.Delegate,
119
NavigateToItemKind
.Enum => CodeSearchResultType.Enum,
120
NavigateToItemKind
.EnumItem => CodeSearchResultType.EnumItem,
121
NavigateToItemKind
.Event => CodeSearchResultType.Event,
122
NavigateToItemKind
.Field => CodeSearchResultType.Field,
123
NavigateToItemKind
.Interface => CodeSearchResultType.Interface,
124
NavigateToItemKind
.Method => CodeSearchResultType.Method,
125
NavigateToItemKind
.Module => CodeSearchResultType.Module,
126
NavigateToItemKind
.OtherSymbol => CodeSearchResultType.OtherSymbol,
127
NavigateToItemKind
.Property => CodeSearchResultType.Property,
128
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);