 | UdpServer Constructor |
Initializes a new instance of the
UdpServer class.
Namespace: Ookii.JumboAssembly: Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxprotected 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 IPAddress
- The local addresses to bind to.
- port Int32
- The port to bind to.
- allowAddressReuse Boolean
- If set to , allows the sockets to be bound to an address that is already in use.
See Also