Example #1
0
 public NetSocket(Socket socket, IPool<SocketAsyncEventArgs> pool)
 {
     _stream = new NetStream(socket, pool);
 }
Example #2
0
 public NetSocket(Socket socket, IPool <Func <IPooled <SocketAsyncEventArgs> > > pool)
 {
     _stream = new NetStream(socket, pool);
 }