sharedlibrarycoreinterfaces IStatusResponse - RaidMax/IW4M-Admin GitHub Wiki
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[]
|
Clientsactive clients |
get |
string |
GameTypegametype/mode |
get |
string |
Hostnameserver name |
get |
string |
Mapname of the map |
get |
Nullable<int> |
MaxClientsmax 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