Click or drag to resize
Ipv4Output Method
Wraps the specified higher-level data into IP packets and transmits them to the specified destination.

Namespace: Network.Sim.Network.Ip
Assembly: Network.Sim (in Network.Sim.exe) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void Output(
	Interface ifc,
	IpAddress destination,
	byte[] data,
	IpProtocol type
)

Parameters

ifc
Type: Network.Sim.CoreInterface
The interface through which to output the data.
destination
Type: Network.Sim.Network.IpIpAddress
The logical address of the destination host.
data
Type: SystemByte
The higher-level data to transmit.
type
Type: Network.Sim.Network.IpIpProtocol
The type of the higher-level data.
Exceptions
ExceptionCondition
ArgumentNullExceptionThrown if any of the arguments is null.
Remarks
This API is exposed to the next higher-up layer.
See Also