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)
198
return
NavigateToItemKind
.Class;
200
return
NavigateToItemKind
.Structure;
202
return
NavigateToItemKind
.Constant;
204
return
NavigateToItemKind
.Delegate;
206
return
NavigateToItemKind
.Enum;
208
return
NavigateToItemKind
.EnumItem;
210
return
NavigateToItemKind
.Event;
212
return
NavigateToItemKind
.Field;
214
return
NavigateToItemKind
.Interface;
218
return
NavigateToItemKind
.Method;
220
return
NavigateToItemKind
.Module;
223
return
NavigateToItemKind
.Property;
228
return
NavigateToItemKind
.Structure;
230
return
NavigateToItemKind
.OtherSymbol;
270
case
NavigateToItemKind
.Class:
274
case
NavigateToItemKind
.Constant:
278
case
NavigateToItemKind
.Delegate:
282
case
NavigateToItemKind
.Enum:
286
case
NavigateToItemKind
.EnumItem:
290
case
NavigateToItemKind
.Event:
294
case
NavigateToItemKind
.Field:
298
case
NavigateToItemKind
.Interface:
302
case
NavigateToItemKind
.Method:
308
case
NavigateToItemKind
.Module:
312
case
NavigateToItemKind
.Property:
317
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);