BinaryOperatorNode Constructor
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.
Create a BinaryOperatorNode
public BinaryOperatorNode (Microsoft.OData.UriParser.BinaryOperatorKind operatorKind, Microsoft.OData.UriParser.SingleValueNode left, Microsoft.OData.UriParser.SingleValueNode right);
new Microsoft.OData.UriParser.BinaryOperatorNode : Microsoft.OData.UriParser.BinaryOperatorKind * Microsoft.OData.UriParser.SingleValueNode * Microsoft.OData.UriParser.SingleValueNode -> Microsoft.OData.UriParser.BinaryOperatorNode
Public Sub New (operatorKind As BinaryOperatorKind, left As SingleValueNode, right As SingleValueNode)
Parameters
- operatorKind
- BinaryOperatorKind
The binary operator type.
- left
- SingleValueNode
The left operand.
- right
- SingleValueNode
The right operand.
Exceptions
Throws if the left or right inputs are null.
Throws if the two operands don't have the same type.