Deserialize the packet.

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 OscMessage FromByteArray(
	IPEndPoint sourceEndPoint,
	byte[] data,
	ref int start
)
Visual Basic (Declaration)
Public Shared Function FromByteArray ( _
	sourceEndPoint As IPEndPoint, _
	data As Byte(), _
	ByRef start As Integer _
) As OscMessage
Visual C++
public:
static OscMessage^ FromByteArray(
	IPEndPoint^ sourceEndPoint, 
	array<unsigned char>^ data, 
	int% start
)

Parameters

sourceEndPoint
Type: System.Net..::.IPEndPoint
The packet origin.
data
Type: array< System..::.Byte >[]()[]
The serialized packet.
start
Type: System..::.Int32 %
The starting index into the serialized data stream.

Return Value

The newly deserialized packet.

See Also