Join() public méthode

public Join ( XG aChannel ) : void
aChannel XG
Résultat void
Exemple #1
0
 void ParserOnJoinChannel(object aSender, EventArgs <Server, string> aEventArgs)
 {
     if (aEventArgs.Value1 == Server)
     {
         _log.Info("JoinChannel(" + aEventArgs.Value2 + ")");
         _client.Join(aEventArgs.Value2);
     }
 }