Click or drag to resize
Ipv4ArpTableOf Method
Returns an enumerable collection of ARP entries for the specified interface.

Namespace: Network.Sim.Network.Ip
Assembly: Network.Sim (in Network.Sim.exe) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public IEnumerable<ArpEntry> ArpTableOf(
	Interface ifc
)

Parameters

ifc
Type: Network.Sim.CoreInterface
The interface whose ARP table to return.

Return Value

Type: IEnumerableArpEntry
An enumerable collection of ARP entries for the specified interface.
Exceptions
ExceptionCondition
ArgumentNullExceptionThrown if the ifc parameter is null.
Remarks
This method is only needed for simulation output.
See Also