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)
378if ((command.Command == EventCommand.Update 383if (command.Command == EventCommand.Update 447if (command.Command == EventCommand.Enable || command.Command == EventCommand.Update) 471if ((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)
505if ((int)command <= (int)EventCommand.Update && (int)command != (int)EventCommand.SendManifest) 2678if (commandArgs.Command == EventCommand.Update) 4174EventPipeEventDispatcher.Instance.SendCommand(this, EventCommand.Update, false, EventLevel.LogAlways, (EventKeywords)0); 4225eventSource.SendCommand(this, EventProviderType.None, 0, EventCommand.Update, true, level, matchAnyKeyword, arguments); 4230EventPipeEventDispatcher.Instance.SendCommand(this, EventCommand.Update, true, level, matchAnyKeyword); 4243eventSource.SendCommand(this, EventProviderType.None, 0, EventCommand.Update, false, EventLevel.LogAlways, EventKeywords.None, null); 4248EventPipeEventDispatcher.Instance.SendCommand(this, EventCommand.Update, false, EventLevel.LogAlways, EventKeywords.None);