2 writes to Arguments
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (2)
2677
commandArgs.
Arguments
??= new Dictionary<string, string?>();
4742
this.
Arguments
= arguments;
18 references to Arguments
Microsoft.CodeAnalysis.Workspaces (2)
Log\RoslynEventSource.cs (2)
95
return command.
Arguments
!= null &&
96
command.
Arguments
.Keys.FirstOrDefault() == "SendFunctionDefinitions";
Microsoft.Extensions.Logging.EventSource (1)
LoggingEventSource.cs (1)
360
if (!command.
Arguments
!.TryGetValue("FilterSpecs", out string? filterSpec))
System.Diagnostics.DiagnosticSource (13)
System\Diagnostics\DiagnosticSourceEventSource.cs (1)
385
command.
Arguments
!.TryGetValue("FilterAndPayloadSpecs", out filterAndPayloadSpecs);
System\Diagnostics\Metrics\MetricsEventSource.cs (12)
385
validShared = SetSharedRefreshIntervalSecs(command.
Arguments
!, _aggregationManager.CollectionPeriod.TotalSeconds, out refreshInterval) ? validShared : false;
388
validShared = SetSharedMaxHistograms(command.
Arguments
!, _aggregationManager.MaxHistograms, out int maxHistograms) ? validShared : false;
389
validShared = SetSharedMaxTimeSeries(command.
Arguments
!, _aggregationManager.MaxTimeSeries, out int maxTimeSeries) ? validShared : false;
395
if (ParseMetrics(command.
Arguments
!, out string? metricsSpecs))
406
if (command.
Arguments
!.TryGetValue(ClientIdKey, out string? clientId))
445
if ((command.Command == EventCommand.Update || command.Command == EventCommand.Enable) && command.
Arguments
!= null)
453
SetRefreshIntervalSecs(command.
Arguments
!, AggregationManager.MinCollectionTimeSecs, defaultIntervalSecs, out double refreshIntervalSecs);
456
SetUniqueMaxTimeSeries(command.
Arguments
!, defaultMaxTimeSeries, out int maxTimeSeries);
459
SetUniqueMaxHistograms(command.
Arguments
!, defaultMaxHistograms, out int maxHistograms);
482
if (ParseMetrics(command.
Arguments
!, out string? metricsSpecs))
529
if (command.
Arguments
!.TryGetValue(ClientIdKey, out string? clientIdArg) && !string.IsNullOrEmpty(clientIdArg))
637
if (command.
Arguments
!.TryGetValue("SessionId", out string? id))
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\CounterGroup.cs (2)
54
Debug.Assert(e.
Arguments
!= null);
56
if (!e.
Arguments
.TryGetValue("EventCounterIntervalSec", out string? valueStr)