JsonIgnoreCondition Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Controls how the JsonIgnoreAttribute ignores properties on serialization and deserialization.
public enum class JsonIgnoreCondition
public enum JsonIgnoreCondition
type JsonIgnoreCondition =
Public Enum JsonIgnoreCondition
- Inheritance
Fields
| Always | 1 | Property will always be ignored. |
| Never | 0 | Property will always be serialized and deserialized, regardless of IgnoreNullValues configuration. |
| WhenWritingDefault | 2 | Property will only be ignored if it is |
| WhenWritingNull | 3 | If the value is |