Beispiel #1
0
 /// <summary>
 /// True iff the two fields are equal.
 /// Two trailer fields are equal iff they have the fields names in the same order.
 /// </summary>
 public override bool Equals(HttpField other)
 {
     return(Equals(other as HttpTrailerField));
 }
Beispiel #2
0
 /// <summary>
 /// True iff the two HTTP transfer encoding fields are of equal value.
 /// Two HTTP transfer encoding fields are equal iff they have the same transfer codings.
 /// </summary>
 public override bool Equals(HttpField other)
 {
     return(Equals(other as HttpTransferEncodingField));
 }
Beispiel #3
0
 /// <summary>
 /// True iff the two fields are equal.
 /// Two content type fields are equal if they have the same media type and subtype and same parameters.
 /// </summary>
 public override bool Equals(HttpField other)
 {
     return Equals(other as HttpContentTypeField);
 }