Beispiel #1
0
 /// <summary>
 /// Allows you to send a strong typed client message to the IRC server
 /// </summary>
 /// <param name="message">An implementation of IClientMessage. Check NetIRC.Messages namespace</param>
 /// <returns>The task object representing the asynchronous operation</returns>
 public async Task SendAsync(IClientMessage message)
 {
     await connection.SendAsync(message.ToString());
 }