Class WorldServerDetails
Serializable class containing details about a world server, including name, port, status, and player count.
[Serializable]
public class WorldServerDetails
- Inheritance
-
WorldServerDetails
- Inherited Members
Fields
CharacterCount
Number of characters currently on the server. Server must enforce CharacterCount >= 0. Negative values indicate a desync or uninitialized counter.
public int CharacterCount
Field Value
LastPulseUtcTicks
Timestamp of the last server heartbeat in UTC ticks.
Stored as long (ticks) rather than DateTime
because FishNet does not preserve DateTimeKind metadata
during serialization. Ticks are always UTC — convert with
new DateTime(ticks, DateTimeKind.Utc).
public long LastPulseUtcTicks
Field Value
Locked
Indicates whether the server is locked (not accepting new connections).
public bool Locked
Field Value
Name
Name of the world server.
public string Name
Field Value
Port
Port number for the server.
public ushort Port