4 overrides of Arguments
Microsoft.CodeAnalysis (4)
Diagnostic\Diagnostic.DiagnosticWithProgrammaticSuppression.cs (1)
46
internal override IReadOnlyList<object?>
Arguments
Diagnostic\Diagnostic_SimpleDiagnostic.cs (1)
110
internal override IReadOnlyList<object?>
Arguments
Diagnostic\DiagnosticWithInfo.cs (1)
104
internal override IReadOnlyList<object?>
Arguments
DiagnosticAnalyzer\CompilerDiagnosticAnalyzer.CompilationAnalyzer.cs (1)
92
internal override IReadOnlyList<object?>
Arguments
=> _original.Arguments;
6 references to Arguments
Microsoft.CodeAnalysis (6)
CommandLine\CommonCompiler.cs (1)
1648
errors = diagnostics.ToReadOnlyAndFree().SelectAsArray(diag => new DiagnosticInfo(messageProvider, diag.IsWarningAsError, diag.Code, (object[])diag.
Arguments
));
Compilation\Compilation.cs (3)
3780
foreach (var argument in diagnostic.
Arguments
)
3806
if (diagnostic.
Arguments
!= null)
3808
foreach (var argument in diagnostic.
Arguments
)
Diagnostic\Diagnostic.DiagnosticWithProgrammaticSuppression.cs (1)
48
get { return _originalUnsuppressedDiagnostic.
Arguments
; }
DiagnosticAnalyzer\CompilerDiagnosticAnalyzer.CompilationAnalyzer.cs (1)
92
internal override IReadOnlyList<object?> Arguments => _original.
Arguments
;