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 コミュニティ フォーラム
Uipath Logo White
信頼とセキュリティ
© 2005-2024 UiPath. All rights reserved.