protected override bool Equals0(IHttp2StreamFrame other)
 {
     return(other is DefaultHttp2HeadersFrame headersFrame &&
            base.Equals0(other) &&
            _headers.Equals(headersFrame._headers) &&
            _endStream == headersFrame._endStream &&
            _padding == headersFrame._padding);
 }
Example #2
0
 protected override bool Equals0(IHttp2StreamFrame other)
 {
     return(other is DefaultHttp2DataFrame otherFrame &&
            base.Equals0(other) &&
            _content.Equals(otherFrame.Content) &&
            _endStream == otherFrame._endStream &&
            _padding == otherFrame._padding);
 }
Example #3
0
 protected override bool Equals0(IHttp2StreamFrame other)
 {
     return(other is DefaultHttp2ResetFrame resetFrame &&
            base.Equals0(other) &&
            _errorCode == resetFrame._errorCode);
 }