C-DEngine 5.105

Required Enumeration

Indicating whether a property is required.

Namespace:  cdeNewtonsoft.Json
Assembly:  C-DEngine (in C-DEngine.dll)

Syntax


public enum Required
Public Enumeration Required
public enum class Required

Members


Member nameDescription
Default The property is not required. The default state.
AllowNull The property must be defined in JSON but can be a null value.
Always The property must be defined in JSON and cannot be a null value.
DisallowNull The property is not required but it cannot be a null value.