16 references to Update
Microsoft.Extensions.Logging.EventSource (1)
LoggingEventSource.cs (1)
358if (command.Command is EventCommand.Update or EventCommand.Enable)
System.Diagnostics.DiagnosticSource (6)
System\Diagnostics\DiagnosticSourceEventSource.cs (2)
381if ((command.Command == EventCommand.Update || command.Command == EventCommand.Enable) && 397else if (command.Command == EventCommand.Update || command.Command == EventCommand.Disable)
System\Diagnostics\Metrics\MetricsEventSource.cs (4)
357if ((command.Command == EventCommand.Update 362if (command.Command == EventCommand.Update 421if (command.Command == EventCommand.Enable || command.Command == EventCommand.Update) 445if ((command.Command == EventCommand.Update || command.Command == EventCommand.Enable) && command.Arguments != null)
System.Private.CoreLib (9)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventPipeEventDispatcher.cs (2)
50if (command == EventCommand.Update && enable) 55else if (command == EventCommand.Update && !enable)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (7)
506if ((int)command <= (int)EventCommand.Update && (int)command != (int)EventCommand.SendManifest) 2679if (commandArgs.Command == EventCommand.Update) 4194EventPipeEventDispatcher.Instance.SendCommand(this, EventCommand.Update, false, EventLevel.LogAlways, (EventKeywords)0); 4245eventSource.SendCommand(this, EventProviderType.None, 0, EventCommand.Update, true, level, matchAnyKeyword, arguments); 4250EventPipeEventDispatcher.Instance.SendCommand(this, EventCommand.Update, true, level, matchAnyKeyword); 4263eventSource.SendCommand(this, EventProviderType.None, 0, EventCommand.Update, false, EventLevel.LogAlways, EventKeywords.None, null); 4268EventPipeEventDispatcher.Instance.SendCommand(this, EventCommand.Update, false, EventLevel.LogAlways, EventKeywords.None);