returning boolean value from Nancyfx

310 Views Asked by At

I'm having a tiny issue about one particular item regarding Nancy. It should be real simple. I'm just missing something. When I return a property that is a boolean, the value always returns as a string. So, my object has one property setup as "bool valid {get;set;}"

And if my code looks like:

    MyObject o = new MyObject();
    o.Valid = true;

    return Response.AsJson(o);

the resulting JSON is always {"valid":"true"}. I want {"valid":true}. Is there a way to enforce data types?

Thoughts? Thanks.

0

There are 0 best solutions below