Beispiel #1
0
 void CommandSent(object sender, InformationEventArgs e)
 {
     chat.AddChat(new ChatNode(e.Information, CssClasses.CommandSent));
 }
Beispiel #2
0
 void Information(object sender, InformationEventArgs e)
 {
     chat.AddChat(new ChatNode(e.Information, CssClasses.ClientInfo));
 }
 void Client_CommandSent(object sender, InformationEventArgs e)
 {
     if (__commandSent != null)
     {
         __commandSent.Call(_host.ClientHost, ConvObj(e));
     }
 }
 void Client_Information(object sender, InformationEventArgs e)
 {
     if (__information != null)
         __information.Call(_host.ClientHost, ConvObj(e));
 }
Beispiel #5
0
 void CommandSent(object sender, InformationEventArgs e)
 {
     PostEvent(new ClientEvent { EventType = ClientEventType.CommandSent, EventData = e });
 }
Beispiel #6
0
 void Information(object sender, InformationEventArgs e)
 {
     PostEvent(new ClientEvent { EventData = e, EventType = ClientEventType.Information });
 }