Important
|
Deprecated in 3.0. Please use setExpectedState() method of [class-interface] class. |
SetInterfaceExpectedState() => void
Set expected state for given interface.
interface |
Interface object. Can be obtained using GetNodeInterfaces or GetInterfaceObject. |
state |
New expected state for interface. Can be specified as integer code or state name. [enum-interface-expected-state] |
Return
None.
Example
// Set expected state to "ignore" for all interfaces of given node interfaces = GetNodeInterfaces($node); foreach(i : interfaces) { SetInterfaceExpectedState(i, "IGNORE"); }