2 writes to Arguments
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (2)
2676
commandArgs.
Arguments
??= new Dictionary<string, string?>();
4722
this.
Arguments
= arguments;
20 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 (15)
System\Diagnostics\DiagnosticSourceEventSource.cs (1)
385
command.
Arguments
!.TryGetValue("FilterAndPayloadSpecs", out filterAndPayloadSpecs);
System\Diagnostics\Metrics\MetricsEventSource.cs (14)
406
validShared = SetSharedRefreshIntervalSecs(command.
Arguments
!, _aggregationManager.CollectionPeriod.TotalSeconds, out refreshInterval) ? validShared : false;
409
validShared = SetSharedMaxHistograms(command.
Arguments
!, _aggregationManager.MaxHistograms, out int maxHistograms) ? validShared : false;
410
validShared = SetSharedMaxTimeSeries(command.
Arguments
!, _aggregationManager.MaxTimeSeries, out int maxTimeSeries) ? validShared : false;
416
if (ParseMetrics(command.
Arguments
!, out string? metricsSpecs))
422
if (ParseBase2ExponentialHistogramSpecs(command.
Arguments
!, out string? base2ExponentialHistogramSpec))
432
if (command.
Arguments
!.TryGetValue(ClientIdKey, out string? clientId))
471
if ((command.Command == EventCommand.Update || command.Command == EventCommand.Enable) && command.
Arguments
!= null)
479
SetRefreshIntervalSecs(command.
Arguments
!, AggregationManager.MinCollectionTimeSecs, defaultIntervalSecs, out double refreshIntervalSecs);
482
SetUniqueMaxTimeSeries(command.
Arguments
!, defaultMaxTimeSeries, out int maxTimeSeries);
485
SetUniqueMaxHistograms(command.
Arguments
!, defaultMaxHistograms, out int maxHistograms);
508
if (ParseMetrics(command.
Arguments
!, out string? metricsSpecs))
513
if (ParseBase2ExponentialHistogramSpecs(command.
Arguments
!, out string? base2ExponentialHistogramSpec))
572
if (command.
Arguments
!.TryGetValue(ClientIdKey, out string? clientIdArg) && !string.IsNullOrEmpty(clientIdArg))
680
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)