Using reflection, I can filter the elements based on whether they are inherited, declared, public, closed, etc. Is there a way to do the same filtering when serializing an object using JSon.NET? p>
My code is currently:
using Newtonsoft.Json; using Newtonsoft.Json.Linq; public void addRequestParameters<T>(string key, T SerializableRequestParameters) {
Alain source share