~ircdotnet-dev/ircdotnet/devel

« back to all changes in this revision

Viewing changes to IrcDotNet/CTCP/CtcpClientMessageProcessing.cs

  • Committer: Alex Regueiro
  • Date: 2010-05-04 21:37:51 UTC
  • Revision ID: alexreg@gmail.com-20100504213751-wfppouxta4xhs0rx
Completed CTCP support (based in CtcpClient class), compliant with current de facto standard of transmitting tagged data. Written unit tests for CTCP PING and VERSION requests and responses.
Minor bug fixes and refactoring.
Small improvements to XML comments.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
using System;
2
 
using System.Collections.Generic;
3
 
using System.Linq;
4
 
using System.Text;
5
 
 
6
 
namespace IrcDotNet
7
 
{
8
 
    // Defines all message processors for the client.
9
 
    partial class CtcpClient
10
 
    {
11
 
        //
12
 
    }
13
 
}