Coder Social home page Coder Social logo

Comments (9)

UgurAldanmaz avatar UgurAldanmaz commented on May 19, 2024

Thanks for your proposal.

Did you try it with null value? If yes, what is the result?

from nlog.web.

worldofsites avatar worldofsites commented on May 19, 2024

Yes, sure, I tried with null value. And exception is:
System.NullReferenceException in NLog.Web.Internal.PropertyReader.GetPropertyInfo(Object value, String propertyName)
Also I tried that hack in config:
${when:when='${aspnet-session:Variable=User}' != null:inner='${aspnet-session:Variable=User.Name:EvaluateAsNestedProperties=true}'}
But to no avail

from nlog.web.

UgurAldanmaz avatar UgurAldanmaz commented on May 19, 2024

So null checking would be useful. But we need to check the side affects.

What do you tkink @304NotModified?

from nlog.web.

304NotModified avatar 304NotModified commented on May 19, 2024

I think this is the best approach:

I think there need to null check for Session["user"].
If object is not null, then try to read property of that object, else return.

from nlog.web.

UgurAldanmaz avatar UgurAldanmaz commented on May 19, 2024

I just opened a bug fix issue for this, #70

@worldofsites,
By the way, you are trying to read User.Name

${when:when='${aspnet-session:Variable=User}' != null:inner='${aspnet-session:Variable=User.Name:EvaluateAsNestedProperties=true}'}

but it is actually UserInfo

Session["user"] = new UserInfo { Name= "johnDoe", Id = 100};

Is it just a typo in the issue or could it be the reason?

Thanks for reporting!

from nlog.web.

worldofsites avatar worldofsites commented on May 19, 2024

@UgurAldanmaz
Key in session = "user", so => in config 'Variable' should "User".
As in https://github.com/NLog/NLog/wiki/AspNetSession-Layout-Renderer
And also it's just example. I tried with the real data with another session keys.

from nlog.web.

UgurAldanmaz avatar UgurAldanmaz commented on May 19, 2024

You are right. Sorry for my oversight.

from nlog.web.

worldofsites avatar worldofsites commented on May 19, 2024

@UgurAldanmaz @304NotModified
Also, about "Variable" values:
Please check nullable context places in "...ValueLayout.." classes, for example AspNetRequestValueLayoutRenderer.cs
var httpRequest = HttpContextAccessor.HttpContext.TryGetRequest();
should be
var httpRequest = HttpContextAccessor?.HttpContext?.TryGetRequest();
like in AspNetRequestUrlRenderer.cs
Because all elements of the chain can be null. I tried that and can confirm.
Thanks.

from nlog.web.

304NotModified avatar 304NotModified commented on May 19, 2024

PS it's OK for me to move to VS2015 (C# 6)

from nlog.web.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.