Example #1
0
 public ObjectResultBase(HttpStatusCode httpStatus) : base(null)
 {
     this.StatusCode = (int)httpStatus;
     this.Value      = ProblemDetailsFactory.New(httpStatus);
 }
Example #2
0
 public ObjectResultBase(HttpStatusCode httpStatus, ModelStateDictionary modelState) : base(null)
 {
     this.StatusCode = (int)httpStatus;
     this.Value      = ProblemDetailsFactory.New(httpStatus, modelState);
 }