FilterNodeOperator Constructor
Initializes a new instance of the FilterNodeOperator class with the specified operator type, left parameter, and right parameter. Do not reference this member directly in your code. It supports the SQL Server infrastructure.
Namespace: Microsoft.SqlServer.Management.Sdk.Sfc
Assembly: Microsoft.SqlServer.Management.Sdk.Sfc (in Microsoft.SqlServer.Management.Sdk.Sfc.dll)
Syntax
'Declaration
Public Sub New ( _
opType As FilterNodeOperator..::..Type, _
left As FilterNode, _
right As FilterNode _
)
'Usage
Dim opType As FilterNodeOperator..::..Type
Dim left As FilterNode
Dim right As FilterNode
Dim instance As New FilterNodeOperator(opType, _
left, right)
public FilterNodeOperator(
FilterNodeOperator..::..Type opType,
FilterNode left,
FilterNode right
)
public:
FilterNodeOperator(
FilterNodeOperator..::..Type opType,
FilterNode^ left,
FilterNode^ right
)
new :
opType:FilterNodeOperator..::..Type *
left:FilterNode *
right:FilterNode -> FilterNodeOperator
public function FilterNodeOperator(
opType : FilterNodeOperator..::..Type,
left : FilterNode,
right : FilterNode
)
Parameters
- opType
Type: Microsoft.SqlServer.Management.Sdk.Sfc.FilterNodeOperator.Type
The type of operator.
- left
Type: Microsoft.SqlServer.Management.Sdk.Sfc.FilterNode
The filter node in the left side.
- right
Type: Microsoft.SqlServer.Management.Sdk.Sfc.FilterNode
The filter node in the right side.