Implemented interface member:
property
DiagnosticId
Microsoft.DotNet.ApiSymbolExtensions.IDiagnostic.DiagnosticId
9 references to DiagnosticId
Microsoft.DotNet.ApiCompatibility (9)
CompatDifference.cs (6)
83new(Left, Right, DiagnosticId, Message, Type, ReferenceId, newSeverity, LeftStability, RightStability); 86new(Left, Right, DiagnosticId, Message, Type, ReferenceId, Severity, leftStability, rightStability); 110public override string ToString() => $"{DiagnosticId} : {Message}"; 116DiagnosticId.Equals(other.DiagnosticId, StringComparison.InvariantCultureIgnoreCase) && 129hashCode = hashCode * -1521134295 + EqualityComparer<string>.Default.GetHashCode(DiagnosticId.ToLowerInvariant());
Runner\ApiCompatRunner.cs (3)
70log.LogMessage(MessageImportance.Normal, $"info {difference.DiagnosticId}: {difference.Message}"); 74Suppression suppression = new(difference.DiagnosticId) 97difference.DiagnosticId,