diff --git a/src/Uno.UI.RemoteControl.Messaging/IDEChannel/CommandRequestIdeMessage.cs b/src/Uno.UI.RemoteControl.Messaging/IDEChannel/CommandRequestIdeMessage.cs index 2fc64da6be3c..0baa312a8f6c 100644 --- a/src/Uno.UI.RemoteControl.Messaging/IDEChannel/CommandRequestIdeMessage.cs +++ b/src/Uno.UI.RemoteControl.Messaging/IDEChannel/CommandRequestIdeMessage.cs @@ -6,10 +6,10 @@ namespace Uno.UI.RemoteControl.Messaging.IdeChannel; /// /// A message sent by the IDE to the dev-server when a command is issued (like a menuitem invoked). /// -/// Id of the window that send the command (so handler can display some UI over it). +/// Id of the process that send the command (so handler can display some UI over it). /// The name/id of the command (e.g. uno.hotreload.open_hotreload_window). /// A json serialized parameter to execute the command. -public record CommandRequestIdeMessage(long WindowId, string Command, string? CommandParameter = null) : IdeMessage(WellKnownScopes.Ide) +public record CommandRequestIdeMessage(long processId, string Command, string? CommandParameter = null) : IdeMessage(WellKnownScopes.Ide) { /// /// A unique identifier of this command execution request that could be used to track the response (if any produced by the remote handler).