UDPConnection StartListening Method (IPEndPoint, Boolean, Boolean)NetworkComms.Net Help
Listen for incoming UDP packets on specified OnlineIPEndPoint.

Namespace: NetworkCommsDotNet.Connections.UDP
Assembly: NetworkCommsDotNet (in NetworkCommsDotNet.dll) Version: 3.0.0.0 (3.0.0.0)
Syntax

[ObsoleteAttribute("Depreciated, please use Connection.StartListening.")]
public static void StartListening(
	IPEndPoint newLocalEndPoint,
	bool useRandomPortFailOver = true,
	bool allowDiscoverable = false
)

Parameters

newLocalEndPoint
Type: OnlineSystem.Net IPEndPoint
The localEndPoint to listen for packets on
useRandomPortFailOver (Optional)
Type: OnlineSystem Boolean
If true and the requested local port is not available will select one at random. If false and a port is unavailable will throw CommsSetupShutdownException
allowDiscoverable (Optional)
Type: OnlineSystem Boolean
Determines if the newly created ConnectionListenerBase will be discoverable if PeerDiscovery is enabled.
See Also