作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在运行主要基于执行端点的 .NET Core Web 应用程序时,我经常收到 NullReferenceException
在 AbortIO
调用 context.Response.Redirect(url, false)
在我的代码中。
谁有想法?
例如,以下代码:
app.UseEndpoints(endpoints =>
{
endpoints.MapGet("/someurl", async context => {
context.Response.Redirect("/someotherurl", false);
});
});
context
一片空白:
private static void OnDisconnect(IntPtr pvManagedHttpContext)
{
IISHttpContext context = null;
try
{
context = (IISHttpContext)GCHandle.FromIntPtr(pvManagedHttpContext).Target;
context.AbortIO(clientDisconnect: true);
}
catch (Exception ex)
{
context?.Server._logger.LogError(0, ex, $"Unexpected exception in {nameof(IISHttpServer)}.{nameof(OnDisconnect)}.");
}
}
最佳答案
它已由 .net 团队修复:https://github.com/dotnet/aspnetcore/issues/17516
关于c# - IISHttpServer OnDisconnect NullReferenceException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61527648/
在运行主要基于执行端点的 .NET Core Web 应用程序时,我经常收到 NullReferenceException在 AbortIO调用 context.Response.Redirect(u
我是一名优秀的程序员,十分优秀!