Skip to content

Commit

Permalink
chore: change message parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
rafael-rosa-knowcode committed Oct 25, 2024
1 parent 33e69cd commit 0e23eb6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ namespace Uno.UI.RemoteControl.Messaging.IdeChannel;
/// <summary>
/// A message sent by the IDE to the dev-server when a command is issued (like a menuitem invoked).
/// </summary>
/// <param name="WindowId">Id of the window that send the command (so handler can display some UI over it).</param>
/// <param name="processId">Id of the process that send the command (so handler can display some UI over it).</param>
/// <param name="Command">The name/id of the command (e.g. uno.hotreload.open_hotreload_window).</param>
/// <param name="CommandParameter">A json serialized parameter to execute the command.</param>
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)
{
/// <summary>
/// A unique identifier of this command execution request that could be used to track the response (if any produced by the remote handler).
Expand Down

0 comments on commit 0e23eb6

Please sign in to comment.