public void Respond()
 {
     this.waitingForResponse = true;
     this.response           = new PrimitiveEndpointClientResponse(this.endpoint, new XText(""));
 }
 public void Respond(Stream stream)
 {
     this.waitingForResponse = true;
     this.response           = new PrimitiveEndpointClientResponse(this.endpoint, stream);
 }
 public void Respond(Exception exception)
 {
     this.waitingForResponse = true;
     this.response           = new PrimitiveEndpointClientResponse(this.endpoint, exception);
 }
 public void Respond(XNode response)
 {
     this.waitingForResponse = true;
     this.response           = new PrimitiveEndpointClientResponse(this.endpoint, response);
 }