-
Notifications
You must be signed in to change notification settings - Fork 0
JsonIgnoreAttribute.SetSetting
robbyxp1 edited this page Feb 9, 2025
·
1 revision
Class to hold a JSON ignore setting for a single set
public class JsonIgnoreAttribute.SetSetting
Inheritance System.Object 🡒 SetSetting
Construct default set setting
public SetSetting();
Construct a set setting for a named set
public SetSetting(string set);
set
System.String
Construct a set setting for a named set with include/ignore and a list of names
public SetSetting(string set, QuickJSON.JsonIgnoreAttribute.Operation ignoreorinclude, string[] names);
set
System.String
ignoreorinclude
Operation
names
System.String[]
FromObject: If non null, list of object members to ignore completely
public string[] Ignore { get; set; }
FromObject: If non null, list of object members to include only
public string[] IncludeOnly { get; set; }
Set name. Attribute sets allow selection of different outputs from the same class
public string Set { get; set; }