CmdPal: Adding page Id to OpenPage telemetry event (#43584)

@niels9001 requested this.

As the name says
This commit is contained in:
Michael Jolley
2025-11-15 07:07:52 -06:00
committed by GitHub
parent 24a3cdd486
commit bcc3ded280
3 changed files with 17 additions and 12 deletions

View File

@@ -15,9 +15,12 @@ public class OpenPage : EventBase, IEvent
{
public int PageDepth { get; set; }
public OpenPage(int pageDepth)
public string Id { get; set; }
public OpenPage(int pageDepth, string id)
{
PageDepth = pageDepth;
Id = id;
EventName = "CmdPal_OpenPage";
}