feat: add a-route uia send connector

This commit is contained in:
zhaoyilun
2026-07-11 11:16:53 +08:00
parent 456ef44e8e
commit 8aa952a491
15 changed files with 941 additions and 19 deletions

View File

@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.IO;
@@ -53,6 +53,9 @@ namespace ISphereWinHelper
case "probe_send_uia_controls":
response = SendConnectorPreflight.ProbeSendUiaControls(requestId, op, opArgs);
break;
case "uia_send_message":
response = UiaSendAction.SendMessage(requestId, op, opArgs);
break;
default:
response = HelperProtocol.Failure(requestId, op, "UNSUPPORTED_OP", "unsupported op: " + op);
break;
@@ -88,7 +91,7 @@ namespace ISphereWinHelper
return new Dictionary<string, object>
{
{ "helper_name", "ISphereWinHelper" },
{ "helper_version", "0.4.0" },
{ "helper_version", "0.5.0" },
{ "protocol", HelperProtocol.Protocol },
{ "runtime", ".NET Framework " + Environment.Version }
};
@@ -113,4 +116,4 @@ namespace ISphereWinHelper
};
}
}
}
}