3 implementations of ToDisplayString
Microsoft.CodeAnalysis.LanguageServer.Protocol (3)
Handler\Diagnostics\DiagnosticSourceProviders\DiagnosticSourceManager.cs (1)
148public string ToDisplayString() => $"{this.GetType().Name}: count={sources.Length}";
Handler\Diagnostics\DiagnosticSources\AbstractDocumentDiagnosticSource.cs (1)
32public string ToDisplayString() => $"{this.GetType().Name}: {Document.FilePath ?? Document.Name} in {Document.Project.Name}";
Handler\Diagnostics\DiagnosticSources\AbstractProjectDiagnosticSource.cs (1)
35public string ToDisplayString() => Project.Name;
2 references to ToDisplayString
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Handler\Diagnostics\AbstractPullDiagnosticHandler.cs (1)
172context.TraceDebug($"Diagnostics were unchanged for {diagnosticSource.ToDisplayString()}");
Handler\Diagnostics\DiagnosticsPullCache.cs (1)
50state.Context.TraceDebug($"Found {diagnostics.Length} diagnostics for {state.DiagnosticSource.ToDisplayString()}");