Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ namespace System.Management.Automation.Tracing
/// An object that can be used to manage the ETW activity ID of the current thread.
/// </summary>
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Etw")]
#nullable enable
public interface IEtwEventCorrelator
{
/// <summary>
Expand Down Expand Up @@ -42,6 +43,7 @@ public interface IEtwEventCorrelator
/// the new activity yields control of the current thread.</returns>
IEtwActivityReverter StartActivity();
}
#nullable restore

/// <summary>
/// A simple implementation of <see cref="IEtwEventCorrelator" />.
Expand Down