We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[LayoutRenderer("aspnet-user-isAuthenticated")] public class IsAuthenticatedLayoutRenderer : AspNetLayoutRendererBase { protected override void DoAppend(StringBuilder builder, LogEventInfo logEvent) { var httpContext = HttpContextAccessor.HttpContext; if (httpContext == null) { return; } if (httpContext.User?.Identity?.IsAuthenticated) { builder.Append(1); } else { builder.Append(0); } } }
todo
The text was updated successfully, but these errors were encountered:
Not missing null-check of HttpContext like in #136? Also what if HttpContextAccessor returns null?
Sorry, something went wrong.
sharp @snakefoot ! Updated it.
https://github.com/NLog/NLog/wiki/AspNet-User-isAuthenticated-Layout-Renderer
Successfully merging a pull request may close this issue.
todo
The text was updated successfully, but these errors were encountered: