458 references to EventKeywords
Aspire.TerminalHost (1)
TerminalHostApp.cs (1)
466EnableEvents(eventSource, EventLevel.Warning, EventKeywords.All);
dotnet-svcutil-lib (54)
FrameworkFork\System.ServiceModel\Internals\WcfEventSource.cs (54)
2902public const EventKeywords ServiceHost = (EventKeywords)0x1; 2903public const EventKeywords Serialization = (EventKeywords)0x2; 2904public const EventKeywords ServiceModel = (EventKeywords)0x4; 2905public const EventKeywords Transaction = (EventKeywords)0x8; 2906public const EventKeywords Security = (EventKeywords)0x10; 2907public const EventKeywords WCFMessageLogging = (EventKeywords)0x20; 2908public const EventKeywords WFTracking = (EventKeywords)0x40; 2909public const EventKeywords WebHost = (EventKeywords)0x80; 2910public const EventKeywords HTTP = (EventKeywords)0x100; 2911public const EventKeywords TCP = (EventKeywords)0x200; 2912public const EventKeywords TransportGeneral = (EventKeywords)0x400; 2913public const EventKeywords ActivationServices = (EventKeywords)0x800; 2914public const EventKeywords Channel = (EventKeywords)0x1000; 2915public const EventKeywords WebHTTP = (EventKeywords)0x2000; 2916public const EventKeywords Discovery = (EventKeywords)0x4000; 2917public const EventKeywords RoutingServices = (EventKeywords)0x8000; 2918public const EventKeywords Infrastructure = (EventKeywords)0x10000; 2919public const EventKeywords EndToEndMonitoring = (EventKeywords)0x20000; 2920public const EventKeywords HealthMonitoring = (EventKeywords)0x40000; 2921public const EventKeywords Troubleshooting = (EventKeywords)0x80000; 2922public const EventKeywords UserEvents = (EventKeywords)0x100000; 2923public const EventKeywords Threading = (EventKeywords)0x200000; 2924public const EventKeywords Quota = (EventKeywords)0x400000; 2925public const EventKeywords WFRuntime = (EventKeywords)0x1000000; 2926public const EventKeywords WFActivities = (EventKeywords)0x2000000; 2927public const EventKeywords WFServices = (EventKeywords)0x4000000; 2928public const EventKeywords WFInstanceStore = (EventKeywords)0x8000000;
ILCompiler.DependencyAnalysisFramework (2)
EventSourceLogStrategy.cs (2)
17public const EventKeywords Graph = (EventKeywords)1;
illink (2)
Microsoft.AspNetCore.Http.Connections (3)
Internal\HttpConnectionsEventSource.cs (3)
48if (IsEnabled(EventLevel.Informational, EventKeywords.None)) 61if (IsEnabled(EventLevel.Informational, EventKeywords.None)) 75if (IsEnabled(EventLevel.Informational, EventKeywords.None))
Microsoft.AspNetCore.InternalTesting (1)
Tracing\CollectingEventListener.cs (1)
38public void CollectFrom(EventSource eventSource) => EnableEvents(eventSource, EventLevel.Verbose, EventKeywords.All);
Microsoft.AspNetCore.Server.Kestrel.Core (8)
Internal\Infrastructure\KestrelEventSource.cs (8)
62if (IsEnabled(EventLevel.Informational, EventKeywords.None)) 83if (IsEnabled(EventLevel.Informational, EventKeywords.None)) 108if (IsEnabled(EventLevel.Informational, EventKeywords.None)) 133if (IsEnabled(EventLevel.Informational, EventKeywords.None)) 150if (IsEnabled(EventLevel.Informational, EventKeywords.None)) 174if (IsEnabled(EventLevel.Informational, EventKeywords.None)) 192if (IsEnabled(EventLevel.Informational, EventKeywords.None)) 216if (IsEnabled(EventLevel.Error, EventKeywords.None))
Microsoft.Build.Framework (4)
MSBuildEventSource.cs (4)
25public const EventKeywords All = (EventKeywords)0x1; 35public const EventKeywords PerformanceLog = (EventKeywords)0x2;
Microsoft.Build.NuGetSdkResolver (6)
SdkResolverEventSource.cs (6)
16public const EventKeywords Logging = (EventKeywords)4; 17public const EventKeywords Performance = (EventKeywords)8; 18public const EventKeywords SdkResolver = (EventKeywords)16;
Microsoft.CodeAnalysis (6)
CodeAnalysisEventSource.Common.cs (6)
14public const EventKeywords Performance = (EventKeywords)0b001; 15public const EventKeywords Correctness = (EventKeywords)0b010; 16public const EventKeywords AnalyzerLoading = (EventKeywords)0b100;
Microsoft.CodeAnalysis.Workspaces (8)
Log\EtwLogger.cs (1)
45return _source.IsEnabled(EventLevel.Verbose, (EventKeywords)(-1));
Log\RoslynEventSource.LogBlock.cs (1)
120if (Instance.IsEnabled(_eventLevel, EventKeywords.None))
src\roslyn\src\Compilers\Core\Portable\CodeAnalysisEventSource.Common.cs (6)
14public const EventKeywords Performance = (EventKeywords)0b001; 15public const EventKeywords Correctness = (EventKeywords)0b010; 16public const EventKeywords AnalyzerLoading = (EventKeywords)0b100;
Microsoft.Extensions.Caching.Hybrid.Tests (1)
TestEventListener.cs (1)
53EnableEvents(Source, EventLevel.LogAlways, EventKeywords.All, args);
Microsoft.Extensions.DependencyInjection (7)
DependencyInjectionEventSource.cs (7)
24public const EventKeywords ServiceProviderInitialized = (EventKeywords)0x1; 107if (IsEnabled(EventLevel.Verbose, EventKeywords.All)) 116if (IsEnabled(EventLevel.Verbose, EventKeywords.All)) 135if (IsEnabled(EventLevel.Verbose, EventKeywords.All)) 144if (IsEnabled(EventLevel.Error, EventKeywords.All)) 328if (source.IsEnabled(EventLevel.Verbose, EventKeywords.All))
Microsoft.Extensions.Logging.EventSource (9)
LoggingEventSource.cs (9)
100public const EventKeywords Meta = (EventKeywords)1; 104public const EventKeywords Message = (EventKeywords)2; 108public const EventKeywords FormattedMessage = (EventKeywords)4; 112public const EventKeywords JsonMessage = (EventKeywords)8; 537EventKeywords allMessageKeywords = Keywords.Message | Keywords.FormattedMessage | Keywords.JsonMessage;
Microsoft.Extensions.Telemetry.Tests (4)
Http\TestEventSource.cs (4)
21if (IsEnabled(EventLevel.Warning, EventKeywords.All)) 30if (IsEnabled(EventLevel.Error, EventKeywords.All)) 39if (IsEnabled(EventLevel.Critical, EventKeywords.All)) 48if (IsEnabled(EventLevel.Verbose, EventKeywords.All))
MSBuild (1)
PerformanceLogEventListener.cs (1)
20internal EventKeywords Keywords { get; set; }
mscorlib (1)
src\runtime\src\libraries\shims\mscorlib\ref\mscorlib.cs (1)
202[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Diagnostics.Tracing.EventKeywords))]
netstandard (1)
netstandard.cs (1)
724[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Diagnostics.Tracing.EventKeywords))]
NuGet.Commands (4)
CommandsEventSource.cs (4)
16public const EventKeywords Performance = (EventKeywords)8; 17public const EventKeywords Restore = (EventKeywords)32;
NuGet.Common (4)
CommonEventSource.cs (4)
16public const EventKeywords Common = (EventKeywords)1; 17public const EventKeywords Performance = (EventKeywords)8;
NuGet.Configuration (2)
ConfigurationEventSource.cs (2)
16public const EventKeywords Configuration = (EventKeywords)2;
PresentationCore (8)
src\wpf\src\Microsoft.DotNet.Wpf\src\Shared\Telemetry\Managed\TelemetryEventSource.cs (8)
46internal const EventKeywords Reserved44Keyword = (EventKeywords)0x0000100000000000; 54internal const EventKeywords TelemetryKeyword = (EventKeywords)0x0000200000000000; 62internal const EventKeywords MeasuresKeyword = (EventKeywords)0x0000400000000000; 70internal const EventKeywords CriticalDataKeyword = (EventKeywords)0x0000800000000000;
PresentationFramework (8)
src\wpf\src\Microsoft.DotNet.Wpf\src\Shared\Telemetry\Managed\TelemetryEventSource.cs (8)
46internal const EventKeywords Reserved44Keyword = (EventKeywords)0x0000100000000000; 54internal const EventKeywords TelemetryKeyword = (EventKeywords)0x0000200000000000; 62internal const EventKeywords MeasuresKeyword = (EventKeywords)0x0000400000000000; 70internal const EventKeywords CriticalDataKeyword = (EventKeywords)0x0000800000000000;
System.Collections.Concurrent (2)
System\Collections\Concurrent\CDSCollectionETWBCLProvider.cs (2)
30private const EventKeywords ALL_KEYWORDS = (EventKeywords)(-1);
System.Diagnostics.DiagnosticSource (16)
System\Diagnostics\DiagnosticSourceEventSource.cs (10)
176public const EventKeywords Messages = (EventKeywords)0x1; 180public const EventKeywords Events = (EventKeywords)0x2; 189public const EventKeywords IgnoreShortCutKeywords = (EventKeywords)0x0800; 190public const EventKeywords AspNetCoreHosting = (EventKeywords)0x1000; 191public const EventKeywords EntityFrameworkCoreCommands = (EventKeywords)0x2000;
System\Diagnostics\Metrics\MetricsEventSource.cs (6)
74public const EventKeywords Messages = (EventKeywords)0x1; 78public const EventKeywords TimeSeriesValues = (EventKeywords)0x2; 82public const EventKeywords InstrumentPublishing = (EventKeywords)0x4;
System.Diagnostics.Tracing (1)
src\runtime\artifacts\obj\System.Diagnostics.Tracing\Release\net11.0\System.Diagnostics.Tracing.Forwards.cs (1)
15[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Diagnostics.Tracing.EventKeywords))]
System.Linq.Parallel (2)
System\Linq\Parallel\Utils\PLINQETWProvider.cs (2)
46private const EventKeywords ALL_KEYWORDS = (EventKeywords)(-1);
System.Net.Http (3)
System\Net\Http\HttpTelemetry.cs (3)
19public const EventKeywords RequestFailedDetailed = (EventKeywords)1; 80if (IsEnabled(EventLevel.Error, EventKeywords.None))
System.Net.NameResolution (2)
System\Net\NameResolutionTelemetry.cs (2)
77if (IsEnabled(EventLevel.Informational, EventKeywords.None)) 108if (IsEnabled(EventLevel.Informational, EventKeywords.None))
System.Net.Security (3)
System\Net\Security\NetSecurityTelemetry.cs (3)
137if (IsEnabled(EventLevel.Informational, EventKeywords.None)) 146if (IsEnabled(EventLevel.Informational, EventKeywords.None)) 166if (IsEnabled(EventLevel.Error, EventKeywords.None))
System.Net.Sockets (7)
System\Net\Sockets\SocketsTelemetry.cs (7)
44if (IsEnabled(EventLevel.Informational, EventKeywords.All)) 53if (IsEnabled(EventLevel.Error, EventKeywords.All)) 68if (IsEnabled(EventLevel.Informational, EventKeywords.All)) 77if (IsEnabled(EventLevel.Error, EventKeywords.All)) 88if (IsEnabled(EventLevel.Informational, EventKeywords.All)) 184if (IsEnabled(EventLevel.Informational, EventKeywords.All)) 193if (IsEnabled(EventLevel.Informational, EventKeywords.All))
System.Private.CoreLib (199)
_generated\0\NativeRuntimeEventSource.g.cs (38)
13public const EventKeywords GCKeyword = (EventKeywords)0x1; 14public const EventKeywords GCHandleKeyword = (EventKeywords)0x2; 15public const EventKeywords LoaderKeyword = (EventKeywords)0x8; 16public const EventKeywords AppDomainResourceManagementKeyword = (EventKeywords)0x800; 17public const EventKeywords ContentionKeyword = (EventKeywords)0x4000; 18public const EventKeywords ExceptionKeyword = (EventKeywords)0x8000; 19public const EventKeywords ThreadingKeyword = (EventKeywords)0x10000; 20public const EventKeywords TypeKeyword = (EventKeywords)0x80000; 21public const EventKeywords GCHeapDumpKeyword = (EventKeywords)0x100000; 22public const EventKeywords GCSampledObjectAllocationHighKeyword = (EventKeywords)0x200000; 23public const EventKeywords GCHeapSurvivalAndMovementKeyword = (EventKeywords)0x400000; 24public const EventKeywords ManagedHeapCollectKeyword = (EventKeywords)0x800000; 25public const EventKeywords GCHeapAndTypeNamesKeyword = (EventKeywords)0x1000000; 26public const EventKeywords GCSampledObjectAllocationLowKeyword = (EventKeywords)0x2000000; 27public const EventKeywords PerfTrackKeyword = (EventKeywords)0x20000000; 28public const EventKeywords ThreadTransferKeyword = (EventKeywords)0x80000000; 29public const EventKeywords MonitoringKeyword = (EventKeywords)0x200000000; 30public const EventKeywords WaitHandleKeyword = (EventKeywords)0x40000000000; 31public const EventKeywords AllocationSamplingKeyword = (EventKeywords)0x80000000000;
src\runtime\src\coreclr\System.Private.CoreLib\src\System\Runtime\CompilerServices\AsyncProfiler.CoreCLR.cs (4)
47EventKeywords eventKeywords = context.ActiveEventKeywords; 80public static void Resume(ref AsyncDispatcherInfo info, AsyncThreadContext context, ulong dispatcherId, EventKeywords activeEventKeywords) 120EventKeywords activeEventKeywords = context.ActiveEventKeywords; 163EventKeywords activeEventKeywords = context.ActiveEventKeywords;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventListener.cs (7)
19/// (<see cref="EventLevel"/>) and bitfields (<see cref="EventKeywords"/>) to further restrict the set of 137EventPipeEventDispatcher.Instance.SendCommand(this, EventCommand.Update, false, EventLevel.LogAlways, (EventKeywords)0); 155EnableEvents(eventSource, level, EventKeywords.None); 168public void EnableEvents(EventSource eventSource, EventLevel level, EventKeywords matchAnyKeyword) 184public void EnableEvents(EventSource eventSource, EventLevel level, EventKeywords matchAnyKeyword, IDictionary<string, string?>? arguments) 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\runtime\src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventPipeEventDispatcher.cs (5)
13internal EventKeywords MatchAnyKeywords { get; } 16internal EventListenerSubscription(EventKeywords matchAnyKeywords, EventLevel level) 46internal void SendCommand(EventListener eventListener, EventCommand command, bool enable, EventLevel level, EventKeywords matchAnyKeywords) 80EventKeywords aggregatedKeywords = EventKeywords.None;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventPipeMetadataGenerator.cs (1)
44EventKeywords keywords,
src\runtime\src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventProvider.cs (6)
193protected EventKeywords MatchAnyKeyword 199protected EventKeywords MatchAllKeyword 1119internal EventKeywords MatchAnyKeyword 1121get => (EventKeywords)_anyKeywordMask; 1125internal EventKeywords MatchAllKeyword 1127get => (EventKeywords)_allKeywordMask;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (24)
236internal EventKeywords m_matchAnyKeyword; // the logical OR of all levels enabled by any output dispatcher (zero is a special case) meaning 'all keywords' 318public bool IsEnabled(EventLevel level, EventKeywords keywords) 333public bool IsEnabled(EventLevel level, EventKeywords keywords, EventChannel channel) 499eventSource.SendCommand(null, EventProviderType.ETW, 0, command, true, EventLevel.LogAlways, EventKeywords.None, commandArguments); 1407Keywords = (EventKeywords)metadata.Descriptor.Keywords, 2057Keywords = (EventKeywords)metadata.Descriptor.Keywords, 2247Keywords = (EventKeywords)unchecked(keywords), 2373private bool IsEnabledByDefault(int eventNum, bool enable, EventLevel currentLevel, EventKeywords currentMatchAnyKeyword) 2381EventKeywords eventKeywords = unchecked((EventKeywords)((ulong)metadata.Descriptor.Keywords & (~(SessionMask.All.ToEventKeywords())))); 2387private bool IsEnabledCommon(bool enabled, EventLevel currentLevel, EventKeywords currentMatchAnyKeyword, 2388EventLevel eventLevel, EventKeywords eventKeywords, EventChannel eventChannel) 2403EventKeywords channel_keywords = unchecked((EventKeywords)(m_channelData[(int)eventChannel] | (ulong)eventKeywords)); 2620EventLevel level, EventKeywords matchAnyKeyword, 3280eventAttribute.Keywords |= (EventKeywords)manifest.GetChannelKeyword(eventAttribute.Channel, (ulong)eventAttribute.Keywords); 3504else if (!reflectionOnly && (staticFieldType == typeof(EventKeywords)) || AttributeTypeNamesMatch(staticFieldType, typeof(EventKeywords))) 4130EventListener? listener, EventProviderType eventProviderType, int perEventSourceSessionId, bool enable, EventLevel level, EventKeywords matchAnyKeyword) 4152internal EventKeywords matchAnyKeyword; 4240public EventKeywords Keywords 4242get => EventId <= 0 ? (_moreInfo?.Keywords ?? default) : (EventKeywords)Metadata.Descriptor.Keywords; 4354public EventKeywords Keywords; 4422public EventKeywords Keywords { get; set; }
src\runtime\src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\FrameworkEventSource.cs (4)
21public const EventKeywords ThreadPool = (EventKeywords)0x0002; 22public const EventKeywords ThreadTransfer = (EventKeywords)0x0010;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\RuntimeEventSource.cs (4)
18public const EventKeywords AppContext = (EventKeywords)0x1; 19public const EventKeywords ProcessorCount = (EventKeywords)0x2;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\TraceLogging\EventDataAttribute.cs (1)
123internal EventKeywords Keywords
src\runtime\src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\TraceLogging\EventSourceOptions.cs (2)
13internal EventKeywords keywords; 60public EventKeywords Keywords
src\runtime\src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\TraceLogging\NameInfo.cs (1)
86(EventKeywords)descriptor.Keywords,
src\runtime\src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\TraceLogging\TraceLoggingEventSource.cs (4)
343EventKeywords keywords = (options.valuesSet & EventSourceOptions.keywordsSet) != 0 406EventKeywords keywords = (options.valuesSet & EventSourceOptions.keywordsSet) != 0 705Keywords = (EventKeywords)eventDescriptor.Keywords, 872EventKeywords keywords = (options.valuesSet & EventSourceOptions.keywordsSet) != 0
src\runtime\src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\TraceLogging\TraceLoggingEventTypes.cs (3)
23internal readonly EventKeywords keywords; 162internal EventKeywords Keywords => (EventKeywords)this.keywords;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\TraceLogging\TraceLoggingTypeInfo.cs (3)
17private readonly EventKeywords keywords; 38EventKeywords keywords, 79public EventKeywords Keywords => this.keywords;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\TraceLogging\TypeAnalysis.cs (1)
17internal readonly EventKeywords keywords;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\AsyncProfiler.cs (27)
184public static void Update(EventLevel logLevel, EventKeywords eventKeywords) 390public static EventKeywords ActiveEventKeywords { get; private set; } 698public EventKeywords ActiveEventKeywords; 927EventKeywords activeEventKeywords = context.ActiveEventKeywords; 972EventKeywords activeEventKeywords = context.ActiveEventKeywords; 1011public static void Resume(ref AsyncStateMachineDispatcherInfo info, AsyncThreadContext context, ulong dispatcherId, EventKeywords activeEventKeywords) 1101EventKeywords activeEventKeywords = context.ActiveEventKeywords; 1162EventKeywords activeEventKeywords = context.ActiveEventKeywords; 1360public static bool CreateRuntimeAsyncContextEvent(EventKeywords eventKeywords) => (eventKeywords & AsyncProfilerEventSource.Keywords.CreateRuntimeAsyncContext) != 0; 1361public static bool ResumeRuntimeAsyncContextEvent(EventKeywords eventKeywords) => (eventKeywords & AsyncProfilerEventSource.Keywords.ResumeRuntimeAsyncContext) != 0; 1362public static bool SuspendRuntimeAsyncContextEvent(EventKeywords eventKeywords) => (eventKeywords & AsyncProfilerEventSource.Keywords.SuspendRuntimeAsyncContext) != 0; 1363public static bool CompleteRuntimeAsyncContextEvent(EventKeywords eventKeywords) => (eventKeywords & AsyncProfilerEventSource.Keywords.CompleteRuntimeAsyncContext) != 0; 1364public static bool UnwindRuntimeAsyncExceptionEvent(EventKeywords eventKeywords) => (eventKeywords & AsyncProfilerEventSource.Keywords.UnwindRuntimeAsyncException) != 0; 1365public static bool CreateRuntimeAsyncCallstackEvent(EventKeywords eventKeywords) => (eventKeywords & AsyncProfilerEventSource.Keywords.CreateRuntimeAsyncCallstack) != 0; 1366public static bool ResumeRuntimeAsyncCallstackEvent(EventKeywords eventKeywords) => (eventKeywords & AsyncProfilerEventSource.Keywords.ResumeRuntimeAsyncCallstack) != 0; 1367public static bool SuspendRuntimeAsyncCallstackEvent(EventKeywords eventKeywords) => (eventKeywords & AsyncProfilerEventSource.Keywords.SuspendRuntimeAsyncCallstack) != 0; 1368public static bool ResumeRuntimeAsyncMethodEvent(EventKeywords eventKeywords) => (eventKeywords & AsyncProfilerEventSource.Keywords.ResumeRuntimeAsyncMethod) != 0; 1369public static bool CompleteRuntimeAsyncMethodEvent(EventKeywords eventKeywords) => (eventKeywords & AsyncProfilerEventSource.Keywords.CompleteRuntimeAsyncMethod) != 0; 1370public static bool CreateStateMachineAsyncContextEvent(EventKeywords eventKeywords) => (eventKeywords & AsyncProfilerEventSource.Keywords.CreateStateMachineAsyncContext) != 0; 1371public static bool ResumeStateMachineAsyncContextEvent(EventKeywords eventKeywords) => (eventKeywords & AsyncProfilerEventSource.Keywords.ResumeStateMachineAsyncContext) != 0; 1372public static bool SuspendStateMachineAsyncContextEvent(EventKeywords eventKeywords) => (eventKeywords & AsyncProfilerEventSource.Keywords.SuspendStateMachineAsyncContext) != 0; 1373public static bool CompleteStateMachineAsyncContextEvent(EventKeywords eventKeywords) => (eventKeywords & AsyncProfilerEventSource.Keywords.CompleteStateMachineAsyncContext) != 0; 1374public static bool UnwindStateMachineAsyncExceptionEvent(EventKeywords eventKeywords) => (eventKeywords & AsyncProfilerEventSource.Keywords.UnwindStateMachineAsyncException) != 0; 1375public static bool ResumeStateMachineAsyncCallstackEvent(EventKeywords eventKeywords) => (eventKeywords & AsyncProfilerEventSource.Keywords.ResumeStateMachineAsyncCallstack) != 0; 1376public static bool ResumeStateMachineAsyncMethodEvent(EventKeywords eventKeywords) => (eventKeywords & AsyncProfilerEventSource.Keywords.ResumeStateMachineAsyncMethod) != 0; 1377public static bool CompleteStateMachineAsyncMethodEvent(EventKeywords eventKeywords) => (eventKeywords & AsyncProfilerEventSource.Keywords.CompleteStateMachineAsyncMethod) != 0; 1378public static bool AnyAsyncEvents(EventKeywords eventKeywords) => (eventKeywords & AsyncProfilerEventSource.AsyncEventKeywords) != 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\AsyncProfilerEventSource.cs (38)
19public const EventKeywords CreateRuntimeAsyncContext = (EventKeywords)0x1; 20public const EventKeywords ResumeRuntimeAsyncContext = (EventKeywords)0x2; 21public const EventKeywords SuspendRuntimeAsyncContext = (EventKeywords)0x4; 22public const EventKeywords CompleteRuntimeAsyncContext = (EventKeywords)0x8; 23public const EventKeywords UnwindRuntimeAsyncException = (EventKeywords)0x10; 24public const EventKeywords CreateRuntimeAsyncCallstack = (EventKeywords)0x20; 25public const EventKeywords ResumeRuntimeAsyncCallstack = (EventKeywords)0x40; 26public const EventKeywords SuspendRuntimeAsyncCallstack = (EventKeywords)0x80; 27public const EventKeywords ResumeRuntimeAsyncMethod = (EventKeywords)0x100; 28public const EventKeywords CompleteRuntimeAsyncMethod = (EventKeywords)0x200; 29public const EventKeywords CreateStateMachineAsyncContext = (EventKeywords)0x400; 30public const EventKeywords ResumeStateMachineAsyncContext = (EventKeywords)0x800; 31public const EventKeywords SuspendStateMachineAsyncContext = (EventKeywords)0x1000; 32public const EventKeywords CompleteStateMachineAsyncContext = (EventKeywords)0x2000; 33public const EventKeywords UnwindStateMachineAsyncException = (EventKeywords)0x4000; 34public const EventKeywords ResumeStateMachineAsyncCallstack = (EventKeywords)0x8000; 35public const EventKeywords ResumeStateMachineAsyncMethod = (EventKeywords)0x10000; 36public const EventKeywords CompleteStateMachineAsyncMethod = (EventKeywords)0x20000; 39public const EventKeywords AsyncEventKeywords = 113EventKeywords keywords = m_matchAnyKeyword;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\TplEventSource.cs (26)
85public const EventKeywords TaskTransfer = (EventKeywords)1; 89public const EventKeywords Tasks = (EventKeywords)2; 93public const EventKeywords Parallel = (EventKeywords)4; 98public const EventKeywords AsyncCausalityOperation = (EventKeywords)8; 99public const EventKeywords AsyncCausalityRelation = (EventKeywords)0x10; 100public const EventKeywords AsyncCausalitySynchronousWork = (EventKeywords)0x20; 105public const EventKeywords TaskStops = (EventKeywords)0x40; 111public const EventKeywords TasksFlowActivityIds = (EventKeywords)0x80; 116public const EventKeywords AsyncMethod = (EventKeywords)0x100; 123public const EventKeywords TasksSetActivityIds = (EventKeywords)0x10000; 128public const EventKeywords Debug = (EventKeywords)0x20000; 132public const EventKeywords DebugActivityId = (EventKeywords)0x40000; 137public const EventKeywords AsyncInstrumentation = (EventKeywords)0x80000;
System.ServiceModel.Primitives (62)
Internals\WcfEventSource.cs (62)
3080public const EventKeywords ServiceHost = (EventKeywords)0x1; 3081public const EventKeywords Serialization = (EventKeywords)0x2; 3082public const EventKeywords ServiceModel = (EventKeywords)0x4; 3083public const EventKeywords Transaction = (EventKeywords)0x8; 3084public const EventKeywords Security = (EventKeywords)0x10; 3085public const EventKeywords WCFMessageLogging = (EventKeywords)0x20; 3086public const EventKeywords WFTracking = (EventKeywords)0x40; 3087public const EventKeywords WebHost = (EventKeywords)0x80; 3088public const EventKeywords HTTP = (EventKeywords)0x100; 3089public const EventKeywords TCP = (EventKeywords)0x200; 3090public const EventKeywords TransportGeneral = (EventKeywords)0x400; 3091public const EventKeywords ActivationServices = (EventKeywords)0x800; 3092public const EventKeywords Channel = (EventKeywords)0x1000; 3093public const EventKeywords WebHTTP = (EventKeywords)0x2000; 3094public const EventKeywords Discovery = (EventKeywords)0x4000; 3095public const EventKeywords RoutingServices = (EventKeywords)0x8000; 3096public const EventKeywords Infrastructure = (EventKeywords)0x10000; 3097public const EventKeywords EndToEndMonitoring = (EventKeywords)0x20000; 3098public const EventKeywords HealthMonitoring = (EventKeywords)0x40000; 3099public const EventKeywords Troubleshooting = (EventKeywords)0x80000; 3100public const EventKeywords UserEvents = (EventKeywords)0x100000; 3101public const EventKeywords Threading = (EventKeywords)0x200000; 3102public const EventKeywords Quota = (EventKeywords)0x400000; 3103public const EventKeywords WFRuntime = (EventKeywords)0x1000000; 3104public const EventKeywords WFActivities = (EventKeywords)0x2000000; 3105public const EventKeywords WFServices = (EventKeywords)0x4000000; 3106public const EventKeywords WFInstanceStore = (EventKeywords)0x8000000; 3111public const EventKeywords Admin = unchecked((EventKeywords)0x8000000000000000); 3112public const EventKeywords Operational = unchecked((EventKeywords)0x4000000000000000); 3113public const EventKeywords Analytic = unchecked((EventKeywords)0x2000000000000000); 3114public const EventKeywords Debug = unchecked((EventKeywords)0x1000000000000000);
System.Threading (2)
System\Threading\CDSsyncETWBCLProvider.cs (2)
36private const EventKeywords ALL_KEYWORDS = (EventKeywords)(-1);
System.Threading.Tasks.Dataflow (2)
Internal\DataflowEtwProvider.cs (2)
33private const EventKeywords ALL_KEYWORDS = (EventKeywords)(-1);
System.Threading.Tasks.Parallel (2)
System\Threading\Tasks\ParallelETWProvider.cs (2)
57private const EventKeywords ALL_KEYWORDS = (EventKeywords)(-1);
System.Transactions.Local (8)
System\Transactions\TransactionsEtwProvider.cs (8)
85private const EventKeywords ALL_KEYWORDS = (EventKeywords)(-1); 1399public const EventKeywords TraceBase = (EventKeywords)0x0001; 1400public const EventKeywords TraceLtm = (EventKeywords)0x0002; 1401public const EventKeywords TraceOleTx = (EventKeywords)0x0004;
System.Windows.Forms.Primitives (2)
System\Windows\Forms\Animation\HighPrecisionTimer.cs (2)
216EventKeywords.None)) 354EventKeywords.None))