64 references to EventCommand
Microsoft.AspNetCore.Hosting (1)
Microsoft.AspNetCore.Http.Connections (1)
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Microsoft.CodeAnalysis.Workspaces (2)
Microsoft.Extensions.Caching.Hybrid (1)
Microsoft.Extensions.DependencyInjection (1)
Microsoft.Extensions.Logging.EventSource (3)
mscorlib (1)
netstandard (1)
System.Diagnostics.DiagnosticSource (19)
System.Diagnostics.Tracing (1)
System.Net.Http (1)
System.Net.NameResolution (1)
System.Net.Security (1)
System.Net.Sockets (1)
System.Private.CoreLib (28)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventListener.cs (5)
137EventPipeEventDispatcher.Instance.SendCommand(this, EventCommand.Update, false, EventLevel.LogAlways, (EventKeywords)0);
188eventSource.SendCommand(this, EventProviderType.None, 0, EventCommand.Update, true, level, matchAnyKeyword, arguments);
193EventPipeEventDispatcher.Instance.SendCommand(this, EventCommand.Update, true, level, matchAnyKeyword);
206eventSource.SendCommand(this, EventProviderType.None, 0, EventCommand.Update, false, EventLevel.LogAlways, EventKeywords.None, null);
211EventPipeEventDispatcher.Instance.SendCommand(this, EventCommand.Update, false, EventLevel.LogAlways, EventKeywords.None);
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (15)
484public static void SendCommand(EventSource eventSource, EventCommand command, IDictionary<string, string?>? commandArguments)
494if ((int)command <= (int)EventCommand.Update && (int)command != (int)EventCommand.SendManifest)
2508(EventCommand)command, IsEnabled(), Level, MatchAnyKeyword, arguments);
2622EventCommand command, bool enable,
2700if (commandArgs.Command == EventCommand.Update)
2741commandArgs.Command = bSessionEnable ? EventCommand.Enable : EventCommand.Disable;
2807if (commandArgs.Command == EventCommand.SendManifest)
4089public EventCommand Command { get; internal set; }
4103if (Command != EventCommand.Enable && Command != EventCommand.Disable)
4115if (Command != EventCommand.Enable && Command != EventCommand.Disable)
4122internal EventCommandEventArgs(EventCommand command, IDictionary<string, string?>? arguments, EventSource eventSource,