asp.net-web-api – 从ExceptionLogger引用操作参数

前端之家收集整理的这篇文章主要介绍了asp.net-web-api – 从ExceptionLogger引用操作参数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想要使​​用新方法来记录全局日志错误.我编写了一个继承ExceptionLogger的类并重写了Log()方法.然后将其注册为替代品.
public class TraceExceptionLogger : ExceptionLogger
{
    public async override void Log(ExceptionLoggerContext context)
    {
        //  This is always empty string
        var content = await context.Request.Content.ReadAsStringAsync();

        //  This is almost always null
        var actionContext = context.ExceptionContext.ActionContext;
    }
}

我可以通过ExceptionLoggerContext对象的属性获取我需要的所有东西,除了动作参数.确实有一个ActionContext属性,但我只看到它为null,this wiki page表示ActionContext和ControllerContext几乎总是为null.

此外,我无法获取内容流,因为它的流已经在它到达我的记录器之前被读取.因此,我无法从请求的内容获取任何已发布的json.

有没有办法从HttpContext.Current或其他方式获取发布的数据?

解决方法

好吧,看起来我可以通过在Request对象上读取InputStream来获取HttpContext中的正文文本,如下所示:
string bodyText = string.Empty;

using (var sr = new StreamReader(HttpContext.Current.Request.InputStream))
{
    sr.BaseStream.Seek(0,SeekOrigin.Begin);
    bodyText = sr.ReadToEnd();
}

到目前为止,这段代码已成功获取我发布的json数据.

原文链接:https://www.f2er.com/aspnet/248795.html

猜你在找的asp.Net相关文章