5 references to NoError
System.Net.Http (5)
System\Net\Http\HttpProtocolException.cs (1)
88Http3ErrorCode.NoError => "H3_NO_ERROR",
System\Net\Http\SocketsHttpHandler\ConnectHelper.cs (1)
127DefaultCloseErrorCode = (long)Http3ErrorCode.NoError,
System\Net\Http\SocketsHttpHandler\Http3Connection.cs (1)
146_connectionClosedTask ??= _connection.CloseAsync((long)Http3ErrorCode.NoError).AsTask();
System\Net\Http\SocketsHttpHandler\Http3RequestStream.cs (2)
225catch (QuicException qex) when (qex.QuicError == QuicError.StreamAborted && qex.ApplicationErrorCode == (long)Http3ErrorCode.NoError) 488catch (HttpRequestException hex) when (hex.InnerException is QuicException qex && qex.QuicError == QuicError.StreamAborted && qex.ApplicationErrorCode == (long)Http3ErrorCode.NoError)