5 writes to Type
Microsoft.AspNetCore.Server.Kestrel.Core (5)
Internal\Http3\Frames\Http3RawFrame.Data.cs (1)
11
Type
= Http3FrameType.Data;
Internal\Http3\Frames\Http3RawFrame.GoAway.cs (1)
11
Type
= Http3FrameType.GoAway;
Internal\Http3\Frames\Http3RawFrame.Headers.cs (1)
11
Type
= Http3FrameType.Headers;
Internal\Http3\Frames\Http3RawFrame.Settings.cs (1)
11
Type
= Http3FrameType.Settings;
Internal\Http3\Http3FrameReader.cs (1)
45
frame.
Type
= (Http3FrameType)type;
9 references to Type
Microsoft.AspNetCore.Server.Kestrel.Core (9)
Internal\Http3\Frames\Http3RawFrame.cs (1)
16
public string FormattedType => Http3Formatting.ToFormattedType(
Type
);
Internal\Http3\Http3ControlStream.cs (3)
333
switch (incomingFrame.
Type
)
351
return ProcessUnknownFrameAsync(incomingFrame.
Type
);
499
throw new Http3ConnectionErrorException(CoreStrings.FormatHttp3ControlStreamFrameTooLarge(Http3Formatting.ToFormattedType(incomingFrame.
Type
)), Http3ErrorCode.FrameError, ConnectionEndReason.InvalidFrameLength);
Internal\Http3\Http3FrameWriter.cs (2)
112
buffer[0] = (byte)_outgoingFrame.
Type
;
256
var headerLength = WriteHeader(_outgoingFrame.
Type
, _outgoingFrame.RemainingLength, _outputWriter);
Internal\Http3\Http3Stream.cs (1)
762
return incomingFrame.
Type
switch
Internal\Infrastructure\KestrelTrace.Http3.cs (2)
40
Http3Log.Http3FrameReceived(_http3Logger, connectionId, Http3Formatting.ToFormattedType(frame.
Type
), streamId, frame.RemainingLength);
48
Http3Log.Http3FrameSending(_http3Logger, connectionId, Http3Formatting.ToFormattedType(frame.
Type
), streamId, frame.RemainingLength);