Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Override this method to validate property accessor.
Namespace: System.Web.Http.OData.Query.Validators
Assembly: System.Web.Http.OData (in System.Web.Http.OData.dll)
Syntax
public virtual void ValidateSingleValuePropertyAccessNode(
SingleValuePropertyAccessNode propertyAccessNode,
ODataValidationSettings settings
)
public:
virtual void ValidateSingleValuePropertyAccessNode(
SingleValuePropertyAccessNode^ propertyAccessNode,
ODataValidationSettings^ settings
)
abstract ValidateSingleValuePropertyAccessNode :
propertyAccessNode:SingleValuePropertyAccessNode *
settings:ODataValidationSettings -> unit
override ValidateSingleValuePropertyAccessNode :
propertyAccessNode:SingleValuePropertyAccessNode *
settings:ODataValidationSettings -> unit
Public Overridable Sub ValidateSingleValuePropertyAccessNode (
propertyAccessNode As SingleValuePropertyAccessNode,
settings As ODataValidationSettings
)
Parameters
- propertyAccessNode
Type: Microsoft.Data.OData.Query.SemanticAst.SingleValuePropertyAccessNode
- settings
Type: System.Web.Http.OData.Query.ODataValidationSettings
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.Http.OData.Query.Validators Namespace
Return to top