Exemplo n.º 1
0
 public bool UpdateAgentStatus(StatusReportInfo info)
 {
     liveAgents[info.IP] = info;
     return(true);
 }
Exemplo n.º 2
0
 //calls from agents to server
 public bool StatusReport(StatusReportInfo info)
 {
     _agents.UpdateAgentStatus(info);
     Clients.All.agentsRefresh(_agents.GetAgents());
     return(true);
 }
Exemplo n.º 3
0
 public StatusReport(string sender, StatusReportInfo msg) : base(sender)
 {
     this.Info = msg;
 }