Share via


ODataMessageReaderSettingsBase.ShouldIncludeAnnotation Property

 

Gets or sets the function to evaluate whether an annotation should be read or skipped by the reader.

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

Syntax

public virtual Func<string, bool> ShouldIncludeAnnotation { get; set; }
public:
property Func<String^, bool>^ ShouldIncludeAnnotation {
    virtual Func<String^, bool>^ get();
    virtual void set(Func<String^, bool>^ value);
}
abstract ShouldIncludeAnnotation : Func<string, bool> with get, set
override ShouldIncludeAnnotation : Func<string, bool> with get, set
Public Overridable Property ShouldIncludeAnnotation As Func(Of String, Boolean)

Property Value

Type: System.Func<String, Boolean>

true if the annotation should be read and false if the annotation should be skipped.

See Also

ODataMessageReaderSettingsBase Class
Microsoft.OData.Core Namespace

Return to top