private Response(StatusCode statusCode, IRepresentation representation)
        {
            Log.DebugFormat("Returning {0}.", statusCode);

            this.statusCode = statusCode;
            this.representation = representation;
        }
 public Response(StatusCode statusCode)
     : this(statusCode, NullRepresentation.Instance)
 {
 }