SendOptions Enumeration |
LiteNetLib |
Sending method type
Namespace: LiteNetLib
Assembly: LiteNetLib (in LiteNetLib.dll) Version: 1.0.0.0
Syntax
C#
public enum SendOptions
Members
Member name | Value | Description | |
---|---|---|---|
Unreliable | 0 | Unreliable. Packets can be dropped, duplicated or arrive without order | |
ReliableUnordered | 1 | Reliable. All packets will be sent and received, but without order | |
Sequenced | 2 | Unreliable. Packets can be dropped, but never duplicated and arrive in order | |
ReliableOrdered | 3 | Reliable and ordered. All packets will be sent and received in order |
See Also