Inheritance: IUiPathRemoteDuplexContractCallback
Esempio n. 1
0
 static void Main(string[] args)
 {
     var client = new RobotClient();
     // Make sure the path to the workflow is correct
     // The workflow project is called RobotAPI and can be found next to the solution file
     var job = @"{'WorkflowFile': 'C:\\Workflows\\RobotAPISample\\RobotAPI\\Main.xaml', 'InputArguments': {'Message': 'Message from RobotAPISample'}, 'User': '******', 'Type': 0}";
     Console.WriteLine(client.StartJob(job));
     Console.ReadLine();
 }
Esempio n. 2
0
        static void Main(string[] args)
        {
            var client = new RobotClient();
            // Make sure the path to the workflow is correct
            // The workflow project is called RobotAPI and can be found next to the solution file
            var job = @"{'WorkflowFile': 'C:\\Workflows\\RobotAPISample\\RobotAPI\\Main.xaml', 'InputArguments': {'Message': 'Message from RobotAPISample'}, 'User': '******', 'Type': 0}";

            Console.WriteLine(client.StartJob(job));
            Console.ReadLine();
        }