-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of ssh.dev.azure.com:v3/translucency/ControlR/Con…
…trolR
- Loading branch information
Showing
56 changed files
with
166 additions
and
229 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
using ControlR.Libraries.Shared.Serialization; | ||
using MessagePack; | ||
using MessagePack; | ||
|
||
namespace ControlR.Agent.Common.IpcDtos; | ||
|
||
[MessagePackObject] | ||
public record DesktopResponseDto([property: MsgPackKey] string DesktopName); | ||
public record DesktopResponseDto([property: Key(0)] string DesktopName); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Libraries/ControlR.Libraries.Shared/Dtos/HubDtos/CloseStreamingSessionRequestDto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
namespace ControlR.Libraries.Shared.Dtos.HubDtos; | ||
|
||
[MessagePackObject] | ||
public record CloseStreamingSessionRequestDto() : ParameterlessDtoBase(DtoType.CloseStreamingSession); | ||
public record CloseStreamingSessionRequestDto(); |
2 changes: 1 addition & 1 deletion
2
Libraries/ControlR.Libraries.Shared/Dtos/HubDtos/CloseTerminalRequestDto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
namespace ControlR.Libraries.Shared.Dtos.HubDtos; | ||
|
||
[MessagePackObject] | ||
public record CloseTerminalRequestDto([property: MsgPackKey] Guid TerminalId) : ParameterlessDtoBase(DtoType.CloseTerminalRequest); | ||
public record CloseTerminalRequestDto([property: Key(0)] Guid TerminalId); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Libraries/ControlR.Libraries.Shared/Dtos/HubDtos/GetAgentAppSettingsDto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
namespace ControlR.Libraries.Shared.Dtos.HubDtos; | ||
|
||
[MessagePackObject] | ||
public record GetAgentAppSettingsDto() : ParameterlessDtoBase(DtoType.GetAgentAppSettings); | ||
public record GetAgentAppSettingsDto(); |
2 changes: 1 addition & 1 deletion
2
Libraries/ControlR.Libraries.Shared/Dtos/HubDtos/GetWindowsSessionsDto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
namespace ControlR.Libraries.Shared.Dtos.HubDtos; | ||
|
||
[MessagePackObject] | ||
public record GetWindowsSessionsDto() : ParameterlessDtoBase(DtoType.GetWindowsSessions); | ||
public record GetWindowsSessionsDto(); |
2 changes: 1 addition & 1 deletion
2
Libraries/ControlR.Libraries.Shared/Dtos/HubDtos/InvokeCtrlAltDelRequestDto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
namespace ControlR.Libraries.Shared.Dtos.HubDtos; | ||
|
||
[MessagePackObject] | ||
public record InvokeCtrlAltDelRequestDto() : ParameterlessDtoBase(DtoType.InvokeCtrlAltDel); | ||
public record InvokeCtrlAltDelRequestDto(); |
15 changes: 0 additions & 15 deletions
15
Libraries/ControlR.Libraries.Shared/Dtos/HubDtos/ParameterlessDtoBase.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Libraries/ControlR.Libraries.Shared/Dtos/HubDtos/RefreshDeviceInfoRequestDto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
namespace ControlR.Libraries.Shared.Dtos.HubDtos; | ||
|
||
[MessagePackObject] | ||
public record RefreshDeviceInfoRequestDto() : ParameterlessDtoBase(DtoType.RefreshDeviceInfoRequest); | ||
public record RefreshDeviceInfoRequestDto(); |
2 changes: 1 addition & 1 deletion
2
Libraries/ControlR.Libraries.Shared/Dtos/HubDtos/ResetKeyboardStateDto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
namespace ControlR.Libraries.Shared.Dtos.HubDtos; | ||
|
||
[MessagePackObject] | ||
public record ResetKeyboardStateDto() : ParameterlessDtoBase(DtoType.ResetKeyboardState); | ||
public record ResetKeyboardStateDto(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
Libraries/ControlR.Libraries.Shared/Dtos/HubDtos/TerminalInputDto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
namespace ControlR.Libraries.Shared.Dtos.HubDtos; | ||
[MessagePackObject] | ||
public record TerminalInputDto( | ||
[property: MsgPackKey] Guid TerminalId, | ||
[property: MsgPackKey] string Input); | ||
[property: Key(0)] Guid TerminalId, | ||
[property: Key(1)] string Input); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Libraries/ControlR.Libraries.Shared/Dtos/HubDtos/TriggerAgentUpdateDto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
namespace ControlR.Libraries.Shared.Dtos.HubDtos; | ||
|
||
[MessagePackObject] | ||
public record TriggerAgentUpdateDto() : ParameterlessDtoBase(DtoType.TriggerAgentUpdate); | ||
public record TriggerAgentUpdateDto(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.