Creates a new instance of OscServer.

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 OscServer(
	TransportType transportType,
	IPAddress ipAddress,
	int port
)
Visual Basic (Declaration)
Public Sub New ( _
	transportType As TransportType, _
	ipAddress As IPAddress, _
	port As Integer _
)
Visual C++
public:
OscServer(
	TransportType transportType, 
	IPAddress^ ipAddress, 
	int port
)

Parameters

transportType
Type: System.Net..::.TransportType
The underlying transport protocol.
ipAddress
Type: System.Net..::.IPAddress
The local IP address to bind to.
port
Type: System..::.Int32
The UDP port to bind to.

Remarks

TransmissionType.Unicast.

See Also