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