RawSend Method

Lidgren.Network

Collapse imageExpand ImageCopy imageCopyHover image
Send raw bytes; only used for debugging

Namespace: Lidgren.Network
Assembly: Lidgren.Network (in Lidgren.Network.dll) Version: 2012.1.7.0 (2012.1.7.0)

Syntax

C#
public void RawSend(
	byte[] arr,
	int offset,
	int length,
	IPEndPoint destination
)
Visual Basic
Public Sub RawSend ( _
	arr As Byte(), _
	offset As Integer, _
	length As Integer, _
	destination As IPEndPoint _
)
Visual C++
public:
void RawSend(
	array<unsigned char>^ arr, 
	int offset, 
	int length, 
	IPEndPoint^ destination
)

Parameters

arr
Type: array<System..::..Byte>[]()[][]

[Missing <param name="arr"/> documentation for "M:Lidgren.Network.NetPeer.RawSend(System.Byte[],System.Int32,System.Int32,System.Net.IPEndPoint)"]

offset
Type: System..::..Int32

[Missing <param name="offset"/> documentation for "M:Lidgren.Network.NetPeer.RawSend(System.Byte[],System.Int32,System.Int32,System.Net.IPEndPoint)"]

length
Type: System..::..Int32

[Missing <param name="length"/> documentation for "M:Lidgren.Network.NetPeer.RawSend(System.Byte[],System.Int32,System.Int32,System.Net.IPEndPoint)"]

destination
Type: System.Net..::..IPEndPoint

[Missing <param name="destination"/> documentation for "M:Lidgren.Network.NetPeer.RawSend(System.Byte[],System.Int32,System.Int32,System.Net.IPEndPoint)"]

See Also