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