Ejemplo n.º 1
0
 public void Http2FrameSending(string connectionId, Http2Frame frame)
 {
     _http2FrameSending(_logger, connectionId, frame.Type, frame.StreamId, frame.PayloadLength, frame.ShowFlags(), null);
 }
Ejemplo n.º 2
0
 public void Http2FrameReceived(string connectionId, Http2Frame frame)
 {
     if (_logger.IsEnabled(LogLevel.Trace))
     {
         _http2FrameReceived(_logger, connectionId, frame.Type, frame.StreamId, frame.PayloadLength, frame.ShowFlags(), null);
     }
 }
Ejemplo n.º 3
0
 public void Http2FrameSending(string connectionId, Http2Frame frame)
 {
     if (_http2Logger.IsEnabled(LogLevel.Trace))
     {
         Http2Log.Http2FrameSending(_http2Logger, connectionId, frame.Type, frame.StreamId, frame.PayloadLength, frame.ShowFlags());
     }
 }
Ejemplo n.º 4
0
 public void Http2FrameReceived(string connectionId, Http2Frame frame)
 {
     _http2FrameReceived(_logger, connectionId, frame.Type, frame.StreamId, frame.Length, frame.ShowFlags(), null);
 }