1 write to TypeName
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
src\LanguageServer\Microsoft.CommonLanguageServerProtocol.Framework\TypeRef.cs (1)
24TypeName = typeName ?? throw new ArgumentNullException(nameof(typeName));
9 references to TypeName
Microsoft.CodeAnalysis.LanguageServer.Protocol (9)
LspServices\AbstractExportLspServiceAttribute.cs (1)
103result.Add(t.TypeName);
LspServices\LspServices.cs (3)
68serviceMap.Add(metadata.TypeRef.TypeName, serviceGetter); 75if (!serviceMap.TryGetValue(metadata.TypeRef.TypeName, out var existing)) 77serviceMap.Add(metadata.TypeRef.TypeName, serviceGetter);
src\LanguageServer\Microsoft.CommonLanguageServerProtocol.Framework\TypeRef.cs (5)
48=> _assemblyQualifiedName ??= $"{TypeName}, {AssemblyName}"; 55TypeName == other.TypeName && 64hashCode = hashCode * -1521134295 + comparer.GetHashCode(TypeName); 75public override string ToString() => TypeName;