コード例 #1
0
ファイル: HttpStatusReport.cs プロジェクト: rmueller/fubumvc
 public bool Equals(HttpStatusReport other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(Equals(other.Status, Status));
 }
コード例 #2
0
 public void HttpStatus(HttpStatusReport report)
 {
     _statusCode = report.Status;
 }
コード例 #3
0
ファイル: HttpStatusReport.cs プロジェクト: KevM/fubumvc
 public bool Equals(HttpStatusReport other)
 {
     if (ReferenceEquals(null, other)) return false;
     if (ReferenceEquals(this, other)) return true;
     return Equals(other.Status, Status);
 }