-
-
Notifications
You must be signed in to change notification settings - Fork 44
sharedlibrarycoreinterfaces IStatusResponse
RaidMax edited this page May 21, 2023
·
1 revision
describes the collection of data returned from a status query
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph SharedLibraryCore.Interfaces
SharedLibraryCore.Interfaces.IStatusResponse[[IStatusResponse]]
class SharedLibraryCore.Interfaces.IStatusResponse interfaceStyle;
end
Type | Name | Methods |
---|---|---|
EFClient []
|
Clients active clients |
get |
string |
GameType gametype/mode |
get |
string |
Hostname server name |
get |
string |
Map name of the map |
get |
Nullable <int > |
MaxClients max number of players |
get |
describes the collection of data returned from a status query
public string Map { get; }
name of the map
public string GameType { get; }
gametype/mode
public string Hostname { get; }
server name
public Nullable<int> MaxClients { get; }
max number of players
public EFClient Clients { get; }
active clients
Generated with ModularDoc