Improved request error handling.

This commit is contained in:
Chris Ross (ASP.NET) 2017-11-03 14:55:21 -07:00
Родитель 28d56fe3fc
Коммит a8e4f69fc7
3 изменённых файлов: 7 добавлений и 2 удалений

Просмотреть файл

@ -127,7 +127,7 @@ namespace Microsoft.AspNetCore.Server.WebListener
{
LogHelper.LogException(_logger, "ListenForNextRequestAsync", exception);
}
return;
continue;
}
try
{

Просмотреть файл

@ -79,6 +79,11 @@ namespace Microsoft.Net.Http.Server
complete = true;
}
}
catch (Exception)
{
server.SendError(asyncResult._nativeRequestContext.RequestId, HttpStatusCode.BadRequest);
throw;
}
finally
{
if (stoleBlob)

Просмотреть файл

@ -318,7 +318,7 @@ namespace Microsoft.Net.Http.Server
return true;
}
private unsafe void SendError(ulong requestId, HttpStatusCode httpStatusCode, IList<string> authChallenges)
internal unsafe void SendError(ulong requestId, HttpStatusCode httpStatusCode, IList<string> authChallenges = null)
{
HttpApi.HTTP_RESPONSE_V2 httpResponse = new HttpApi.HTTP_RESPONSE_V2();
httpResponse.Response_V1.Version = new HttpApi.HTTP_VERSION();