Show / Hide Table of Contents

Enum DeliveryMethod

Sending method type

Namespace: LiteNetLib
Assembly: LiteNetLib.dll
Syntax
public enum DeliveryMethod : byte

Fields

Name Description
ReliableOrdered

Reliable and ordered. Packets won't be dropped, won't be duplicated, will arrive in order.

ReliableSequenced

Reliable only last packet. Packets can be dropped (except the last one), won't be duplicated, will arrive in order. Cannot be fragmented

ReliableUnordered

Reliable. Packets won't be dropped, won't be duplicated, can arrive without order.

Sequenced

Unreliable. Packets can be dropped, won't be duplicated, will arrive in order.

Unreliable

Unreliable. Packets can be dropped, can be duplicated, can arrive without order.

In this article
Back to top Generated by DocFX