-
Notifications
You must be signed in to change notification settings - Fork 5
/
ConnectParameters.cs
52 lines (28 loc) · 1.12 KB
/
ConnectParameters.cs
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// WARNING
// This file is an empty shell containing only public C# items.
// The internal code is hidden; to access it, you need to obtain a Source licence of the library.
using Common;
namespace UnderAutomation.UniversalRobots {
/// <summary>
/// Contains parameters to connect to the robot
/// </summary>
public class ConnectParameters {
public ConnectParameters()
{
// Source is hidden, a Source licence is needed to access internal code...
}
public ConnectParameters(string ip)
{
// Source is hidden, a Source licence is needed to access internal code...
}
public string IP { get; set; }
public bool PingBeforeConnecting { get; set; }
public PrimaryInterfaceConnectParameters PrimaryInterface { get; set; }
public DashboardConnectParameters Dashboard { get; set; }
public SocketCommunicationConnectParameters SocketCommunication { get; set; }
public SshConnectParameters Ssh { get; set; }
public RtdeConnectParameters Rtde { get; set; }
public XmlRpcConnectParameters XmlRpc { get; set; }
public InterpreterModeConnectParameters InterpreterMode { get; set; }
}
}