15 writes to StreamId
Microsoft.AspNetCore.Server.HttpSys.FunctionalTests (15)
src\Shared\Http2cat\Http2Utilities.cs (5)
448
frame.
StreamId
= streamId;
493
frame.
StreamId
= 1;
717
pingFrame.
StreamId
= streamId;
795
frame.
StreamId
= 1;
826
frame.
StreamId
= streamId;
src\Shared\ServerInfrastructure\Http2\Http2Frame.Continuation.cs (1)
28
StreamId
= streamId;
src\Shared\ServerInfrastructure\Http2\Http2Frame.Data.cs (1)
38
StreamId
= streamId;
src\Shared\ServerInfrastructure\Http2\Http2Frame.GoAway.cs (1)
26
StreamId
= 0;
src\Shared\ServerInfrastructure\Http2\Http2Frame.Headers.cs (1)
50
StreamId
= streamId;
src\Shared\ServerInfrastructure\Http2\Http2Frame.Ping.cs (1)
28
StreamId
= 0;
src\Shared\ServerInfrastructure\Http2\Http2Frame.Priority.cs (1)
25
StreamId
= streamId;
src\Shared\ServerInfrastructure\Http2\Http2Frame.RstStream.cs (1)
20
StreamId
= streamId;
src\Shared\ServerInfrastructure\Http2\Http2Frame.Settings.cs (1)
29
StreamId
= 0;
src\Shared\ServerInfrastructure\Http2\Http2Frame.WindowUpdate.cs (1)
20
StreamId
= streamId;
src\Shared\ServerInfrastructure\Http2\Http2FrameReader.cs (1)
67
frame.
StreamId
= (int)Bitshifter.ReadUInt31BigEndian(header.Slice(StreamIdOffset));
8 references to StreamId
Microsoft.AspNetCore.Server.HttpSys.FunctionalTests (8)
src\Shared\Http2cat\Http2Utilities.cs (7)
265
Bitshifter.WriteUInt31BigEndian(buffer, (uint)frame.
StreamId
, preserveHighestBit: false);
879
Assert.Equal(withStreamId, frame.
StreamId
);
904
Assert.Equal(expectedStreamId, headersFrame.
StreamId
);
917
Assert.Equal(expectedStreamId, frame.
StreamId
);
927
Assert.Equal(0, frame.
StreamId
);
935
Assert.Equal(expectedStreamId, frame.
StreamId
);
971
Assert.Equal(expectedStreamId, frame.
StreamId
);
src\Shared\ServerInfrastructure\Http2\Http2Frame.cs (1)
63
return $"{Type} Stream: {
StreamId
} Length: {PayloadLength} Flags: {ShowFlags()}";