public FakeHttpServer()
 {
     this.uriBuilder = new UriBuilder("http", "localhost", 8080);
     this.listener   = new HttpListener();
     this.headers    = new HttpHeaderCollection();
     this.responder  = new HttpNullResponder();
 }
Exemplo n.º 2
0
 public FakeHttpServer(Uri uri)
 {
     this.uriBuilder = new UriBuilder(uri);
     uriBuilder.Path = getFixedPath(uriBuilder.Path);
     this.listener   = new HttpListener();
     this.headers    = new HttpHeaderCollection();
     this.responder  = new HttpNullResponder();
     this.StatusCode = HttpStatusCode.OK;
 }