Example #1
0
 public void HandleClient(TcpClient tcpClient)
 {
     using (var stream = tcpClient.GetStream())
     {
         this.Request  = this.GetRequest(stream);
         this.Response = this.RouteRequest();
         StreamUtilities.WriteResponse(stream, this.Response);
     }
 }