Namespace: Json.Path
Inheritance: NameSelector
🡒 object
Implemented interfaces:
- ISelector
- IHaveShorthand
Represents a name selector.
Properties
Name | Type | Summary |
---|---|---|
Name | string | Gets the name. |
Methods
BuildString(StringBuilder builder)
Builds a string using a string builder.
Declaration
1
public void BuildString(StringBuilder builder)
Parameter | Type | Description |
---|---|---|
builder | StringBuilder | The string builder. |
Evaluate(Node match, JsonNode rootNode)
Evaluates the selector.
Declaration
1
public IEnumerable<Node> Evaluate(Node match, JsonNode rootNode)
Parameter | Type | Description |
---|---|---|
match | Node | The node to evaluate. |
rootNode | JsonNode | The root node (typically used by filter selectors, e.g. $[?@foo < $.bar] ) |
Returns
A collection of nodes.
Semantically, this is a nodelist, but leaving as IEnumerable<Node> allows for deferred execution.
ToString()
Returns a string that represents the current object.
Declaration
1
public override string ToString()
Returns
A string that represents the current object.