Transmit an OSC packet via TCP through the connected OscClient.

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 static void Send(
	OscPacket packet,
	OscClient client
)
Visual Basic (Declaration)
Public Shared Sub Send ( _
	packet As OscPacket, _
	client As OscClient _
)
Visual C++
public:
static void Send(
	OscPacket^ packet, 
	OscClient^ client
)

Parameters

packet
Type: Bespoke.Common.Osc..::.OscPacket
The packet to transmit.
client
Type: Bespoke.Common.Osc..::.OscClient
The OscClient to communicate through.

Remarks

The OscClient must be connected for successful transmission.

See Also