Table of Contents

Class WorldServerDetails

Namespace
FishMMO.Shared
Assembly
FishMMO.Shared.dll

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

int

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

long

Locked

Indicates whether the server is locked (not accepting new connections).

public bool Locked

Field Value

bool

Name

Name of the world server.

public string Name

Field Value

string

Port

Port number for the server.

public ushort Port

Field Value

ushort