NetConnectionStatus Enumeration |
Status for a NetConnection instance
Namespace:
Internal.Lidgren.Network
Assembly:
NeoAxis.Core (in NeoAxis.Core.dll) Version: 2024.1.1.0 (2024.1.1.0)
Syntax public enum NetConnectionStatus
Members
| Member name | Value | Description |
---|
| None | 0 |
No connection, or attempt, in place
|
| InitiatedConnect | 1 |
Connect has been sent; waiting for ConnectResponse
|
| ReceivedInitiation | 2 |
Connect was received, but ConnectResponse hasn't been sent yet
|
| RespondedAwaitingApproval | 3 |
Connect was received and ApprovalMessage released to the application; awaiting Approve() or Deny()
|
| RespondedConnect | 4 |
Connect was received and ConnectResponse has been sent; waiting for ConnectionEstablished
|
| Connected | 5 |
Connected
|
| Disconnecting | 6 |
In the process of disconnecting
|
| Disconnected | 7 |
Disconnected
|
See Also