CountNode Constructors
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.
Overloads
CountNode(CollectionNode) |
Constructs a new CountNode. |
CountNode(CollectionNode, FilterClause, SearchClause) |
Constructs a new CountNode. |
CountNode(CollectionNode)
Constructs a new CountNode.
public CountNode (Microsoft.OData.UriParser.CollectionNode source);
new Microsoft.OData.UriParser.CountNode : Microsoft.OData.UriParser.CollectionNode -> Microsoft.OData.UriParser.CountNode
Public Sub New (source As CollectionNode)
Parameters
- source
- CollectionNode
The value containing the property.
Exceptions
Throws if the input source is null.
Applies to
CountNode(CollectionNode, FilterClause, SearchClause)
Constructs a new CountNode.
public CountNode (Microsoft.OData.UriParser.CollectionNode source, Microsoft.OData.UriParser.FilterClause filterClause, Microsoft.OData.UriParser.SearchClause searchClause);
new Microsoft.OData.UriParser.CountNode : Microsoft.OData.UriParser.CollectionNode * Microsoft.OData.UriParser.FilterClause * Microsoft.OData.UriParser.SearchClause -> Microsoft.OData.UriParser.CountNode
Public Sub New (source As CollectionNode, filterClause As FilterClause, searchClause As SearchClause)
Parameters
- source
- CollectionNode
The value containing the property.
- filterClause
- FilterClause
The FilterClausein the count node.
- searchClause
- SearchClause
The SearchClausein the count node.
Exceptions
Throws if the input source is null.