5 references to NoError
System.Net.Http (5)
System\Net\Http\HttpProtocolException.cs (1)
88
Http3ErrorCode.
NoError
=> "H3_NO_ERROR",
System\Net\Http\SocketsHttpHandler\ConnectHelper.cs (1)
127
DefaultCloseErrorCode = (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)
225
catch (QuicException qex) when (qex.QuicError == QuicError.StreamAborted && qex.ApplicationErrorCode == (long)Http3ErrorCode.
NoError
)
488
catch (HttpRequestException hex) when (hex.InnerException is QuicException qex && qex.QuicError == QuicError.StreamAborted && qex.ApplicationErrorCode == (long)Http3ErrorCode.
NoError
)