• Home
  • Tutorials
  • API Documentation
  • Asset Store
Show / Hide Table of Contents
  • SuperNet.Netcode.Compress
    • CompressorDeflate
    • CompressorLZF
    • ICompressor
  • SuperNet.Netcode.Crypto
    • CryptoAES
    • CryptoECDH
    • CryptoRandom
    • CryptoRSA
    • Curve25519
    • ICryptoAuthenticator
    • ICryptoEncryptor
    • ICryptoExchanger
    • ICryptoRandom
  • SuperNet.Netcode.Transport
    • ConnectionRequest
    • DisconnectReason
    • Host
    • HostConfig
    • HostEvents
    • HostStatistics
    • HostTimespan
    • HostTimestamp
    • IHostListener
    • IMessage
    • IMessageListener
    • IPeerListener
    • MessageEvents
    • MessageReceived
    • MessageSent
    • Peer
    • PeerConfig
    • PeerEvents
    • PeerStatistics
  • SuperNet.Netcode.Util
    • Allocator
    • ArrayPool<T>
    • CRC32
    • IPComparer
    • IPResolver
    • IWritable
    • ObjectPool<T>
    • Reader
    • Serializer
    • Writer
  • SuperNet.Unity.Components
    • INetworkAuthoritative
    • INetworkRegisterable
    • INetworkRollbackable
    • NetworkAnimation
    • NetworkAnimator
    • NetworkAuthority
    • NetworkPrefab
    • NetworkRegistrar
    • NetworkSpawner
    • NetworkSyncModeMethod
    • NetworkSyncModeVector2
    • NetworkSyncModeVector3
    • NetworkTransform
  • SuperNet.Unity.Core
    • NetworkComponent
    • NetworkHost
    • NetworkIdentity
    • NetworkIdentityExtensions
    • NetworkManager
  • SuperNet.Unity.Editor
    • NetworkAuthorityEditor
    • NetworkHostEditor
    • NetworkHostEditor.BandwithUnit
    • NetworkIdentityDrawer
    • NetworkManagerEditor
    • NetworkPrefabEditor
    • NetworkSpawnerEditor

Class MessageReceived

Extra information for a network message that has been received by a connected peer.

Inheritance
System.Object
MessageReceived
Namespace: SuperNet.Netcode.Transport
Assembly: cs.temp.dll.dll
Syntax
public class MessageReceived

Fields

Attempt

How many times the message was previously sent before.

Declaration
public readonly byte Attempt
Field Value
Type Description
System.Byte

Channel

Data channel the message was sent over.

Declaration
public readonly byte Channel
Field Value
Type Description
System.Byte

Timestamp

Timestamp included in the message.

If message was not timed, this is approximated using round trip time.

Declaration
public readonly HostTimestamp Timestamp
Field Value
Type Description
HostTimestamp

Properties

Ordered

Received message is ordered.

Declaration
public bool Ordered { get; }
Property Value
Type Description
System.Boolean

Reliable

Received message is reliable.

Declaration
public bool Reliable { get; }
Property Value
Type Description
System.Boolean

Timed

Received message is timed.

Declaration
public bool Timed { get; }
Property Value
Type Description
System.Boolean

Unique

Received message is unique.

Declaration
public bool Unique { get; }
Property Value
Type Description
System.Boolean
Back to top Generated by DocFX