Property to access all Motion related methods and propeties

Namespace: EAL.EALConnection
Assembly: EAL (in EAL.dll) Version: 1.1.5.0 (1.1.5.0)

Syntax

C#
public ISystem System { get; }
Visual Basic
Public ReadOnly Property System As ISystem
	Get
Visual C++
public:
virtual property ISystem^ System {
	ISystem^ get () sealed;
}

Property Value

Type: ISystem

Implements

IEALConnection..::..System

Examples

 Copy imageCopy
private static void Method1()
{
    using (IEALConnection ealConnection = new EALConnection())
    {
        ealConnection.Connect("192.168.0.10");
        ealConnection.System.Reboot();
    }
}

See Also