示例#1
0
文件: Network.cs 项目: txdv/qutter
 public Network(NetworkCollection networkCollection, int id)
 {
     Collection = networkCollection;
     Id = id;
     IrcUserCollection = new IrcUserCollection(this);
     IrcChannelCollection = new IrcChannelCollection(this);
 }
示例#2
0
 internal QuasselClient(CoreConnection connection)
 {
     this.connection = connection;
     NetworkCollection = new NetworkCollection(this);
     BufferSyncer = new BufferSyncer(this);
 }