Ejemplo n.º 1
0
 internal override bool Poll(int microseconds, SelectMode mode)
 {
     if (acceptedSock != null)
     {
         return(acceptedSock.Poll(microseconds, mode));
     }
     throw new IOException("Not accepted yet");
 }
Ejemplo n.º 2
0
 virtual internal bool Poll(int microseconds, SelectMode mode)
 {
     return(sock.Poll(microseconds, mode));
 }