activities
latest
false
重要 :
请注意此内容已使用机器翻译进行了部分本地化。
UiPath logo, featuring letters U and I in white
IT 自动化活动
Last updated 2024年11月15日

Citrix APIs

API 允许您访问“管理包”菜单中提供的服务并与之交互。您可以在设计编码自动化时使用这些 API。访问编码自动化,了解编码自动化以及如何使用 API 设计这些自动化。
注意:使用“转到定义”(F12) 允许您访问特定服务的 UiPath API 定义。我们建议在实施编码自动化时仅依赖直接公开的 API。未直接与服务一起公开的其他 API 如有更改,恕不另行通知。

使用 API

To use the Citrix APIs, you must first create a connection in Integration Service, then use it in a coded workflow. Once this is done, download the activity package, and create a coded workflow.

代码示例

public void Execute()
        {
            var citrixSecret = new System.Net.NetworkCredential("", "YourPassword").SecurePassword;
            var citrixService = citrix.CitrixService("server address", 0, "username", citrixSecret);
            var result = citrixService.GetVMByUUIDAsync("id").GetAwaiter().GetResult();public void Execute()
        {
            var citrixSecret = new System.Net.NetworkCredential("", "YourPassword").SecurePassword;
            var citrixService = citrix.CitrixService("server address", 0, "username", citrixSecret);
            var result = citrixService.GetVMByUUIDAsync("id").GetAwaiter().GetResult();
  • 使用 API
  • 代码示例

此页面有帮助吗?

获取您需要的帮助
了解 RPA - 自动化课程
UiPath Community 论坛
Uipath Logo White
信任与安全
© 2005-2024 UiPath。保留所有权利。