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