24 references to NO_ERROR
InMemory.FunctionalTests (17)
Http2\Http2ConnectionTests.cs (7)
1365
await WaitForStreamErrorAsync(expectedStreamId: 1, Http2ErrorCode.
NO_ERROR
, null);
5158
VerifyGoAway(await ReceiveFrameAsync(), 0, Http2ErrorCode.
NO_ERROR
);
5187
VerifyGoAway(await ReceiveFrameAsync(), 3, Http2ErrorCode.
NO_ERROR
);
5219
VerifyGoAway(await ReceiveFrameAsync(), Int32.MaxValue, Http2ErrorCode.
NO_ERROR
);
5237
VerifyGoAway(await ReceiveFrameAsync(), 1, Http2ErrorCode.
NO_ERROR
);
5250
VerifyGoAway(await ReceiveFrameAsync(), Int32.MaxValue, Http2ErrorCode.
NO_ERROR
);
5376
await WaitForStreamErrorAsync(1, Http2ErrorCode.
NO_ERROR
, null);
Http2\Http2StreamTests.cs (7)
1924
await WaitForStreamErrorAsync(expectedStreamId: 1, Http2ErrorCode.
NO_ERROR
, null);
2011
await WaitForStreamErrorAsync(1, Http2ErrorCode.
NO_ERROR
, null);
2074
await WaitForStreamErrorAsync(1, Http2ErrorCode.
NO_ERROR
, null);
5641
resetFeature.Reset((int)Http2ErrorCode.
NO_ERROR
);
5668
await WaitForStreamErrorAsync(1, Http2ErrorCode.
NO_ERROR
, expectedErrorMessage:
5730
resetFeature.Reset((int)Http2ErrorCode.
NO_ERROR
);
5760
await WaitForStreamErrorAsync(1, Http2ErrorCode.
NO_ERROR
, expectedErrorMessage:
Http2\Http2TestBase.cs (3)
1167
frame.PrepareGoAway(0, Http2ErrorCode.
NO_ERROR
);
1176
frame.PrepareGoAway(0, Http2ErrorCode.
NO_ERROR
);
1287
return WaitForConnectionErrorAsync<Exception>(ignoreNonGoAwayFrames, expectedLastStreamId, Http2ErrorCode.
NO_ERROR
, expectedErrorMessage: null);
Microsoft.AspNetCore.Server.Kestrel.Core (6)
Internal\Http2\Http2Connection.cs (5)
229
SetConnectionErrorCode(hasActiveStreams ? ConnectionEndReason.ConnectionReset : ConnectionEndReason.TransportCompleted, Http2ErrorCode.
NO_ERROR
);
289
var errorCode = Http2ErrorCode.
NO_ERROR
;
1507
_frameWriter.WriteGoAwayAsync(int.MaxValue, Http2ErrorCode.
NO_ERROR
).Preserve();
1517
SetConnectionErrorCode(_gracefulCloseReason, Http2ErrorCode.
NO_ERROR
);
1518
_frameWriter.WriteGoAwayAsync(_highestOpenedStreamId, Http2ErrorCode.
NO_ERROR
).Preserve();
Internal\Http2\Http2Stream.cs (1)
171
_ = _http2Output.WriteRstStreamAsync(Http2ErrorCode.
NO_ERROR
).Preserve();
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (1)
Http2\Http2FrameWriterTests.cs (1)
64
await frameWriter.WriteGoAwayAsync(1, Http2ErrorCode.
NO_ERROR
);