16 references to Update
Microsoft.Extensions.Logging.EventSource (1)
LoggingEventSource.cs (1)
361if (command.Command is EventCommand.Update or EventCommand.Enable)
System.Diagnostics.DiagnosticSource (6)
System\Diagnostics\DiagnosticSourceEventSource.cs (2)
385if ((command.Command == EventCommand.Update || command.Command == EventCommand.Enable) && 401else if (command.Command == EventCommand.Update || command.Command == EventCommand.Disable)
System\Diagnostics\Metrics\MetricsEventSource.cs (4)
376if ((command.Command == EventCommand.Update 381if (command.Command == EventCommand.Update 445if (command.Command == EventCommand.Enable || command.Command == EventCommand.Update) 469if ((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)
499if ((int)command <= (int)EventCommand.Update && (int)command != (int)EventCommand.SendManifest) 2710if (commandArgs.Command == EventCommand.Update) 4208EventPipeEventDispatcher.Instance.SendCommand(this, EventCommand.Update, false, EventLevel.LogAlways, (EventKeywords)0); 4259eventSource.SendCommand(this, EventProviderType.None, 0, EventCommand.Update, true, level, matchAnyKeyword, arguments); 4264EventPipeEventDispatcher.Instance.SendCommand(this, EventCommand.Update, true, level, matchAnyKeyword); 4277eventSource.SendCommand(this, EventProviderType.None, 0, EventCommand.Update, false, EventLevel.LogAlways, EventKeywords.None, null); 4282EventPipeEventDispatcher.Instance.SendCommand(this, EventCommand.Update, false, EventLevel.LogAlways, EventKeywords.None);