True if this object is connected to the real drive.

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

Syntax

C#
bool IsConnected { get; }
Visual Basic
ReadOnly Property IsConnected As Boolean
	Get
Visual C++
property bool IsConnected {
	bool get ();
}

Property Value

Type: Boolean

Examples

 Copy imageCopy
private static void Method1()
{
    using (IEALConnection ealConnection = new EALConnection())
    {
        ealConnection.Connect("192.168.0.10");
        Console.WriteLine("Connected - " + ealConnection.IsConnected);
        ealConnection.Disconnect();
        Console.WriteLine("Connected - " + ealConnection.IsConnected);
    }
}

See Also