Does Json.net have any way to specify only the properties you want to be serialized? or alternatively serialize certain properties based on binding flags like Declared Only?
Right now I am using JObject.FromObject(MainObj.SubObj); to get all properties of SubObj which is an instance of a class that obeys the ISubObject interface:
public interface ISubObject
{
}
public class ParentSubObject : ISubObject
{
    public string A { get; set; }
}
public class SubObjectWithOnlyDeclared : ParentSubObject
{
    [JsonInclude] // This is fake, but what I am wishing existed
    public string B { get; set; }
    [JsonInclude] // This is fake, but what I am wishing existed
    public string C { get; set; }
}
public class NormalSubObject: ParentSubObject
{
    public string B { get; set; }
}
If MainObj.SubObj was a NormalSubObject it would serailize both A and B  but if it was SubObjectWithOnlyDeclared it would serailize only B and C and ignore the parent property
 
     
     
     
    