public void HttpStatus(HttpStatusReport report)
 {
     _statusCode = report.Status;
 }
Example #2
0
 public bool Equals(HttpStatusReport other)
 {
     if (ReferenceEquals(null, other)) return false;
     if (ReferenceEquals(this, other)) return true;
     return Equals(other.Status, Status);
 }