ODataNullValueBehaviorKind 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.
Represents the behavior of readers when reading property with null value.
public enum ODataNullValueBehaviorKind
type ODataNullValueBehaviorKind =
Public Enum ODataNullValueBehaviorKind
- Inheritance
-
ODataNullValueBehaviorKind
Fields
Name | Value | Description |
---|---|---|
Default | 0 | The default behavior - this means validate the null value against the declared type and then report the null value. |
IgnoreValue | 1 | This means to not report the value and not validate it against the model. |
DisableValidation | 2 | This means to report the value, but not validate it against the model. |