Leave() private méthode

private Leave ( IEnumerable channels, string comment = null ) : void
channels IEnumerable
comment string
Résultat void
Exemple #1
0
 /// <summary>
 ///     Leaves the channel, giving the specified comment.
 /// </summary>
 /// <param name="comment">
 ///     The comment to send the server upon leaving the channel, or <see langword="null" /> for
 ///     no comment.
 /// </param>
 public void Leave(string comment = null)
 {
     client.Leave(new[] { Name }, comment);
 }