Initializes a new instance of the TcpServer class

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

Syntax

C#
public TcpServer(
	IPAddress ipAddress,
	int port,
	bool receiveDataInline,
	bool useSynchronousCommunication,
	bool littleEndianByteOrder
)
Visual Basic (Declaration)
Public Sub New ( _
	ipAddress As IPAddress, _
	port As Integer, _
	receiveDataInline As Boolean, _
	useSynchronousCommunication As Boolean, _
	littleEndianByteOrder As Boolean _
)
Visual C++
public:
TcpServer(
	IPAddress^ ipAddress, 
	int port, 
	bool receiveDataInline, 
	bool useSynchronousCommunication, 
	bool littleEndianByteOrder
)

Parameters

ipAddress
Type: System.Net..::.IPAddress

[Missing <param name="ipAddress"/> documentation for "M:Bespoke.Common.Net.TcpServer.#ctor(System.Net.IPAddress,System.Int32,System.Boolean,System.Boolean,System.Boolean)"]

port
Type: System..::.Int32

[Missing <param name="port"/> documentation for "M:Bespoke.Common.Net.TcpServer.#ctor(System.Net.IPAddress,System.Int32,System.Boolean,System.Boolean,System.Boolean)"]

receiveDataInline
Type: System..::.Boolean

[Missing <param name="receiveDataInline"/> documentation for "M:Bespoke.Common.Net.TcpServer.#ctor(System.Net.IPAddress,System.Int32,System.Boolean,System.Boolean,System.Boolean)"]

useSynchronousCommunication
Type: System..::.Boolean

[Missing <param name="useSynchronousCommunication"/> documentation for "M:Bespoke.Common.Net.TcpServer.#ctor(System.Net.IPAddress,System.Int32,System.Boolean,System.Boolean,System.Boolean)"]

littleEndianByteOrder
Type: System..::.Boolean
The expected endianness of integral value types.

See Also