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)
191
return
NavigateToItemKind
.Class;
193
return
NavigateToItemKind
.Structure;
195
return
NavigateToItemKind
.Constant;
197
return
NavigateToItemKind
.Delegate;
199
return
NavigateToItemKind
.Enum;
201
return
NavigateToItemKind
.EnumItem;
203
return
NavigateToItemKind
.Event;
205
return
NavigateToItemKind
.Field;
207
return
NavigateToItemKind
.Interface;
211
return
NavigateToItemKind
.Method;
213
return
NavigateToItemKind
.Module;
216
return
NavigateToItemKind
.Property;
218
return
NavigateToItemKind
.Structure;
220
return
NavigateToItemKind
.OtherSymbol;
260
case
NavigateToItemKind
.Class:
264
case
NavigateToItemKind
.Constant:
268
case
NavigateToItemKind
.Delegate:
272
case
NavigateToItemKind
.Enum:
276
case
NavigateToItemKind
.EnumItem:
280
case
NavigateToItemKind
.Event:
284
case
NavigateToItemKind
.Field:
288
case
NavigateToItemKind
.Interface:
292
case
NavigateToItemKind
.Method:
298
case
NavigateToItemKind
.Module:
302
case
NavigateToItemKind
.Property:
307
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)
554
case
NavigateToItemKind
.EnumItem:
556
case
NavigateToItemKind
.Structure:
558
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)
110
NavigateToItemKind
.Class => CodeSearchResultType.Class,
111
NavigateToItemKind
.Constant => CodeSearchResultType.Constant,
112
NavigateToItemKind
.Delegate => CodeSearchResultType.Delegate,
113
NavigateToItemKind
.Enum => CodeSearchResultType.Enum,
114
NavigateToItemKind
.EnumItem => CodeSearchResultType.EnumItem,
115
NavigateToItemKind
.Event => CodeSearchResultType.Event,
116
NavigateToItemKind
.Field => CodeSearchResultType.Field,
117
NavigateToItemKind
.Interface => CodeSearchResultType.Interface,
118
NavigateToItemKind
.Method => CodeSearchResultType.Method,
119
NavigateToItemKind
.Module => CodeSearchResultType.Module,
120
NavigateToItemKind
.OtherSymbol => CodeSearchResultType.OtherSymbol,
121
NavigateToItemKind
.Property => CodeSearchResultType.Property,
122
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);