A UDPConnection could support different combinations of features. i.e. From the most basic (None) which
sends connectionless UDP packets up to an emulated TCP. Future versions of NetworkCommsDotNet will support an ever
increasing number of UDP features. This flag enum is used to specify which of the available features should be used.
Namespace: NetworkCommsDotNet.Connections.UDPAssembly: NetworkCommsDotNet (in NetworkCommsDotNet.dll) Version: 3.0.0.0 (3.0.0.0)
Syntax
Members
Member name | Value | Description | |
---|---|---|---|
None | 0 | The most basic UDP option. All UDP packets are sent connectionless with no error handling, sequencing or duplication prevention. | |
Handshake | 1 | Performs a connection handshake, which ensures the remote end is alive at the time of the connection establish. Also exchanges network identifier and possible remote listening port. |
See Also