Class ConsoleProfileStartedEventArgs
Sent when new profile recording is started using console.profile() call.
public sealed record ConsoleProfileStartedEventArgs : EventArgs, IEquatable<EventArgs>, IEquatable<ConsoleProfileStartedEventArgs>
- Inheritance
-
EventArgsConsoleProfileStartedEventArgs
- Implements
-
IEquatable<EventArgs>
- Inherited Members
-
EventArgs.ToString()EventArgs.GetHashCode()EventArgs.Equals(EventArgs)EventArgs.<Clone>$()EventArgs.BiDiEventArgs.AdditionalDataEventArgs.AdditionalMessageData
Constructors
ConsoleProfileStartedEventArgs(string, Location, string?)
Sent when new profile recording is started using console.profile() call.
public ConsoleProfileStartedEventArgs(string Id, Location Location, string? Title = null)
Parameters
IdstringLocationLocationLocation of console.profile().
TitlestringProfile title passed as an argument to console.profile().
Properties
Id
public string Id { get; init; }
Property Value
Location
Location of console.profile().
public Location Location { get; init; }
Property Value
Title
Profile title passed as an argument to console.profile().
public string? Title { get; init; }