Internal\Http2\Http2Connection.cs (10)
690Http2FrameType.DATA => ProcessDataFrameAsync(payload),
691Http2FrameType.HEADERS => ProcessHeadersFrameAsync(application, payload),
692Http2FrameType.PRIORITY => ProcessPriorityFrameAsync(),
693Http2FrameType.RST_STREAM => ProcessRstStreamFrameAsync(),
694Http2FrameType.SETTINGS => ProcessSettingsFrameAsync(payload),
695Http2FrameType.PUSH_PROMISE => throw new Http2ConnectionErrorException(CoreStrings.Http2ErrorPushPromiseReceived, Http2ErrorCode.PROTOCOL_ERROR, ConnectionEndReason.UnexpectedFrame),
696Http2FrameType.PING => ProcessPingFrameAsync(payload),
697Http2FrameType.GOAWAY => ProcessGoAwayFrameAsync(),
698Http2FrameType.WINDOW_UPDATE => ProcessWindowUpdateFrameAsync(),
699Http2FrameType.CONTINUATION => ProcessContinuationFrameAsync(payload),
Internal\Infrastructure\KestrelTrace.Http2.cs (2)
121public static partial void Http2FrameReceived(ILogger logger, string connectionId, Http2FrameType type, int id, int length, object flags);
133public static partial void Http2FrameSending(ILogger logger, string connectionId, Http2FrameType type, int id, int length, object flags);