Share via


ODataUndeclaredPropertyBehaviorKinds Enumeration

 

Enumerates the behavior of readers when reading undeclared property.

Namespace:   Microsoft.OData.Core
Assembly:  Microsoft.OData.Core (in Microsoft.OData.Core.dll)

Syntax

[FlagsAttribute]
public enum ODataUndeclaredPropertyBehaviorKinds
[FlagsAttribute]
public enum class ODataUndeclaredPropertyBehaviorKinds
[<FlagsAttribute>]
type ODataUndeclaredPropertyBehaviorKinds
<FlagsAttribute>
Public Enumeration ODataUndeclaredPropertyBehaviorKinds

Members

Member name Description
IgnoreUndeclaredValueProperty

The reader will skip reading the property if it is not declared by the model and the current type is not open.

None

The default behavior - the reader will fail if it finds a property which is not declared by the model and the type is not open.

ReportUndeclaredLinkProperty

The reader will read and report link properties which are not declared by the model.

See Also

Microsoft.OData.Core Namespace

Return to top