| UdpServer Constructor |
Initializes a new instance of the
UdpServer class.
Namespace:
Ookii.Jumbo
Assembly:
Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 2.0.0
Syntax protected UdpServer(
IPAddress[] localAddresses,
int port,
bool allowAddressReuse
)
Protected Sub New (
localAddresses As IPAddress(),
port As Integer,
allowAddressReuse As Boolean
)
protected:
UdpServer(
array<IPAddress^>^ localAddresses,
int port,
bool allowAddressReuse
)
new :
localAddresses : IPAddress[] *
port : int *
allowAddressReuse : bool -> UdpServer
Parameters
- localAddresses
- Type: System.NetIPAddress
The local addresses to bind to. - port
- Type: SystemInt32
The port to bind to. - allowAddressReuse
- Type: SystemBoolean
If set to , allows the sockets to be bound to an address that is already in use.
See Also