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