Ejemplo n.º 1
0
        public IrcClient()
        {
            _expectedMessages = new ConcurrentDictionary <Predicate <RawMessage>, TaskCompletionSource <RawMessage> >(2, 5);

            Raw = new RawIrcClient();
            Raw.MessageReceived += Raw_MessageReceived;
        }
Ejemplo n.º 2
0
 public RawEventArgs(RawIrcClient client)
 {
     Client = client;
 }
Ejemplo n.º 3
0
 public DisconnectedEventArgs(RawIrcClient client, Exception exception) : base(client)
 {
     Exception = exception;
 }
Ejemplo n.º 4
0
 public RawMessageReceivedEventArgs(RawIrcClient client, RawMessage message) : base(client)
 {
     Message = message;
 }