1 sharedlibrarycoredtos ServerInfo
RaidMax edited this page 2023-05-20 22:09:21 -05:00

ServerInfo Public class

Diagram

  flowchart LR
  classDef interfaceStyle stroke-dasharray: 5 5;
  classDef abstractStyle stroke-width:4px
  subgraph SharedLibraryCore.Dtos
  SharedLibraryCore.Dtos.ServerInfo[[ServerInfo]]
  end

Members

Properties

Public properties

Type Name Methods
List<ChatInfo> ChatHistory get, set
int ClientCount get, set
ClientHistoryInfo ClientHistory get, set
string ConnectProtocolUrl get, set
string Endpoint get
string ExternalIPAddress get, set
Game Game get, set
string GameType get, set
long ID get, set
string IPAddress get, set
bool IsPasswordProtected get, set
Nullable<double> LobbyZScore get
string Map get, set
int MaxClients get, set
string Name get, set
bool Online get, set
List<PlayerInfo> Players get, set
int Port get, set
int PrivateClientSlots get, set
List<Report> Reports get, set

Details

Constructors

ServerInfo

Source code

public ServerInfo()

Properties

Name

public string Name { get; set; }

Port

public int Port { get; set; }

Map

public string Map { get; set; }

GameType

public string GameType { get; set; }

ClientCount

public int ClientCount { get; set; }

MaxClients

public int MaxClients { get; set; }

PrivateClientSlots

public int PrivateClientSlots { get; set; }

ChatHistory

public List<ChatInfo> ChatHistory { get; set; }

Players

public List<PlayerInfo> Players { get; set; }

Reports

public List<Report> Reports { get; set; }

ClientHistory

public ClientHistoryInfo ClientHistory { get; set; }

ID

public long ID { get; set; }

Online

public bool Online { get; set; }

ConnectProtocolUrl

public string ConnectProtocolUrl { get; set; }

IPAddress

public string IPAddress { get; set; }

ExternalIPAddress

public string ExternalIPAddress { get; set; }

IsPasswordProtected

public bool IsPasswordProtected { get; set; }

Endpoint

public string Endpoint { get; }

LobbyZScore

public Nullable<double> LobbyZScore { get; }

Game

public Game Game { get; set; }

Generated with ModularDoc