Exemplo n.º 1
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());
     }
 }
Exemplo n.º 2
0
 public void Http2UnexpectedConnectionQueueError(string connectionId, Exception ex)
 {
     Http2Log.Http2UnexpectedConnectionQueueError(_http2Logger, connectionId, ex);
 }
Exemplo n.º 3
0
 public void Http2ConnectionQueueProcessingCompleted(string connectionId)
 {
     Http2Log.Http2ConnectionQueueProcessingCompleted(_http2Logger, connectionId);
 }
Exemplo n.º 4
0
 public void Http2UnexpectedDataRemaining(int streamId, string connectionId)
 {
     Http2Log.Http2UnexpectedDataRemaining(_http2Logger, streamId, connectionId);
 }
Exemplo n.º 5
0
 public void Http2QueueOperationsExceeded(string connectionId, ConnectionAbortedException ex)
 {
     Http2Log.Http2QueueOperationsExceeded(_http2Logger, connectionId, ex);
 }
Exemplo n.º 6
0
 public void Http2ConnectionClosed(string connectionId, int highestOpenedStreamId)
 {
     Http2Log.Http2ConnectionClosed(_http2Logger, connectionId, highestOpenedStreamId);
 }
Exemplo n.º 7
0
 public void Http2MaxConcurrentStreamsReached(string connectionId)
 {
     Http2Log.Http2MaxConcurrentStreamsReached(_http2Logger, connectionId);
 }
Exemplo n.º 8
0
 public void HPackEncodingError(string connectionId, int streamId, Exception ex)
 {
     Http2Log.HPackEncodingError(_http2Logger, connectionId, streamId, ex);
 }
Exemplo n.º 9
0
 public void Http2ConnectionClosing(string connectionId)
 {
     Http2Log.Http2ConnectionClosing(_http2Logger, connectionId);
 }
Exemplo n.º 10
0
 public void Http2StreamResetAbort(string traceIdentifier, Http2ErrorCode error, ConnectionAbortedException abortReason)
 {
     Http2Log.Http2StreamResetAbort(_http2Logger, traceIdentifier, error, abortReason);
 }
Exemplo n.º 11
0
 public void Http2StreamError(string connectionId, Http2StreamErrorException ex)
 {
     Http2Log.Http2StreamError(_http2Logger, connectionId, ex);
 }