Gets ip address
Namespace: EAL.Interfaces.SystemAssembly: EAL (in EAL.dll) Version: 1.1.5.0 (1.1.5.0)
Syntax
| C# |
|---|
string GetIpAddress() |
| Visual Basic |
|---|
Function GetIpAddress As String |
| Visual C++ |
|---|
String^ GetIpAddress() |
Return Value
Type: StringIp address
Examples
private static void Method1() { using (IEALConnection ealConnection = new EALConnection()) { ealConnection.Connect("192.168.0.10"); string ipaddress = ealConnection.System.GetIpAddress(); Console.WriteLine("Ipaddress is:" + ipaddress); } } | |