-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathProgram.cs
More file actions
29 lines (25 loc) · 747 Bytes
/
Program.cs
File metadata and controls
29 lines (25 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using System;
using System.Threading.Tasks;
using BASRemote.Objects;
namespace BASRemote.Example
{
internal static class Program
{
private static async Task Main()
{
using (var client = new BasRemoteClient(new Options {ScriptName = "TestRemoteControl"}))
{
await client.Start();
var arguments = new Params {["Query"] = "cats"};
var result = await client
.RunFunction("GoogleSearch", arguments)
.GetTask<string[]>();
foreach (var link in result)
{
Console.WriteLine(link);
}
}
Console.ReadKey();
}
}
}