Transmit an OSC packet via UDP.

Namespace:  Bespoke.Common.Osc
Assembly:  Bespoke.Common.Osc (in Bespoke.Common.Osc.dll) Version: 4.3.0.0 (4.3.0.0)

Syntax

C#
public void Send(
	IPEndPoint source,
	IPEndPoint destination
)
Visual Basic (Declaration)
Public Sub Send ( _
	source As IPEndPoint, _
	destination As IPEndPoint _
)
Visual C++
public:
void Send(
	IPEndPoint^ source, 
	IPEndPoint^ destination
)

Parameters

source
Type: System.Net..::.IPEndPoint
The source end point to bind to.
destination
Type: System.Net..::.IPEndPoint
The packet's destination.

Remarks

Instantiates a UdpClient object to bind to the specified source endpoint.

See Also