8 references to WellKnownSymbolMonikerSchemes
Microsoft.CodeAnalysis.Features (2)
LanguageServiceIndexFormat\SymbolMoniker.cs (2)
61
return new SymbolMoniker(
WellKnownSymbolMonikerSchemes
.DotnetNamespace, symbol.ToDisplayString());
75
return new SymbolMoniker(
WellKnownSymbolMonikerSchemes
.DotnetXmlDoc, symbolMoniker);
Microsoft.CodeAnalysis.LanguageServerIndexFormat.Generator.UnitTests (6)
RangeResultSetTests.vb (6)
16
<InlineData("class C { [|string|] s; }", "mscorlib#T:System.String",
WellKnownSymbolMonikerSchemes
.DotnetXmlDoc)>
17
<InlineData("class C { void M() { [|M|](); } }", TestProjectAssemblyName + "#M:C.M",
WellKnownSymbolMonikerSchemes
.DotnetXmlDoc)>
18
<InlineData("static class C { static void [|M|](this string s, int i) { } }", TestProjectAssemblyName + "#M:C.M(System.String,System.Int32)",
WellKnownSymbolMonikerSchemes
.DotnetXmlDoc)>
19
<InlineData("static class C { static void M(this string s, int i) { s.[|M|](i); } }", TestProjectAssemblyName + "#M:C.M(System.String,System.Int32)",
WellKnownSymbolMonikerSchemes
.DotnetXmlDoc)>
20
<InlineData("class C { void M(string s) { M([|s|]); } }", TestProjectAssemblyName + "#M:C.M(System.String)#s",
WellKnownSymbolMonikerSchemes
.DotnetXmlDoc)>
23
<InlineData("class C { [|global|]::System.String s; }", "<global namespace>",
WellKnownSymbolMonikerSchemes
.DotnetNamespace)>