Share via


FilterQueryValidator.ValidateRangeVariable Method (RangeVariable, ODataValidationSettings)

 

Override this method to validate the parameter used in the filter query.

Namespace:   System.Web.OData.Query.Validators
Assembly:  System.Web.OData (in System.Web.OData.dll)

Syntax

public virtual void ValidateRangeVariable(
    RangeVariable rangeVariable,
    ODataValidationSettings settings
)
public:
virtual void ValidateRangeVariable(
    RangeVariable^ rangeVariable,
    ODataValidationSettings^ settings
)
abstract ValidateRangeVariable : 
        rangeVariable:RangeVariable *
        settings:ODataValidationSettings -> unit
override ValidateRangeVariable : 
        rangeVariable:RangeVariable *
        settings:ODataValidationSettings -> unit
Public Overridable Sub ValidateRangeVariable (
    rangeVariable As RangeVariable,
    settings As ODataValidationSettings
)

Parameters

Remarks

This method is intended to be called from method overrides in subclasses. This method also supports unit-testing scenarios and is not intended to be called from user code. Call the Validate method to validate a FilterQueryOption instance.

See Also

FilterQueryValidator Class
System.Web.OData.Query.Validators Namespace

Return to top