4 implementations of Name
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
NavigateTo\NavigateToSearcherTests.cs (1)
550public string Name => throw new NotImplementedException();
Microsoft.CodeAnalysis.ExternalAccess.FSharp (1)
Internal\NavigateTo\InternalFSharpNavigateToSearchResult.cs (1)
22public string Name { get; }
Microsoft.CodeAnalysis.Features (2)
ExternalAccess\VSTypeScript\VSTypeScriptNavigateToSearchService.cs (1)
121public string Name => _result.Name;
NavigateTo\RoslynNavigateToItem.cs (1)
203string INavigateToSearchResult.Name => _item.DeclaredSymbolInfo.Name;
8 references to Name
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (4)
NavigateTo\NavigateToSearcherTests.cs (4)
415Assert.Equal("Goo1", firstDocumentResult.Name); 416Assert.Equal("Goo2", secondDocumentResult.Name); 475Assert.Equal("Goo1", firstDocumentResult.Name); 476Assert.Equal("Goo3", secondDocumentResult.Name);
Microsoft.CodeAnalysis.EditorFeatures (1)
NavigateTo\NavigateToItemProvider.Callback.cs (1)
59result.Name,
Microsoft.CodeAnalysis.ExternalAccess.OmniSharp (1)
NavigateTo\OmniSharpNavigateToSearchService.cs (1)
50result.Name,
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Handler\Symbols\WorkspaceSymbolsHandler.cs (1)
95result.Name,
Microsoft.VisualStudio.LanguageServices (1)
NavigateTo\RoslynNavigateToSearchCallback.cs (1)
78result.Name,