1 sharedlibrarycoreinterfaces IStatusResponse
RaidMax edited this page 2023-05-20 22:09:21 -05:00

IStatusResponse Public interface

Description

describes the collection of data returned from a status query

Diagram

  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

Members

Properties

Public properties

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

Details

Summary

describes the collection of data returned from a status query

Properties

Map

public string Map { get; }
Summary

name of the map

GameType

public string GameType { get; }
Summary

gametype/mode

Hostname

public string Hostname { get; }
Summary

server name

MaxClients

public Nullable<int> MaxClients { get; }
Summary

max number of players

Clients

public EFClient Clients { get; }
Summary

active clients

Generated with ModularDoc