Click or drag to resize
ArpResolve Method
Resolves the specified IPv4 address to a Layer-2 (MAC-48) physical address.

Namespace: Network.Sim.Network.Ip.Arp
Assembly: Network.Sim (in Network.Sim.exe) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void Resolve(
	Interface ifc,
	IpAddress ipAddress
)

Parameters

ifc
Type: Network.Sim.CoreInterface
The interface to look an address up for.
ipAddress
Type: Network.Sim.Network.IpIpAddress
The IPv4 address to resolve.
Exceptions
ExceptionCondition
ArgumentNullExceptionThrown if either of the arguments is null.
Remarks
This API is exposed to the next higher-up layer. In other words, it is called by the Network layer to resolve an IPv4 address to the corresponding MAC-48 address.
See Also