Example #1
0
 public Network(NetworkCollection networkCollection, int id)
 {
     Collection = networkCollection;
     Id = id;
     IrcUserCollection = new IrcUserCollection(this);
     IrcChannelCollection = new IrcChannelCollection(this);
 }
Example #2
0
 internal QuasselClient(CoreConnection connection)
 {
     this.connection = connection;
     NetworkCollection = new NetworkCollection(this);
     BufferSyncer = new BufferSyncer(this);
 }