Skip to content

Commit a25649c

Browse files
author
json-everything-ci
committed
regenerated api docs
1 parent 6f1694f commit a25649c

File tree

3 files changed

+86
-1
lines changed

3 files changed

+86
-1
lines changed

_docs/api/JsonPath.Net/FunctionRepository.md

+81
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,87 @@ public static void Register(NodelistFunctionDefinition function)
6161
| function | NodelistFunctionDefinition | The function. |
6262

6363

64+
### Register(ValueFunctionDefinition function, Type functionType)
65+
66+
Registers a new function implementation, allowing it to be parsed.
67+
68+
#### Declaration
69+
70+
```c#
71+
public static void Register(ValueFunctionDefinition function, Type functionType)
72+
```
73+
74+
| Parameter | Type | Description |
75+
|---|---|---|
76+
| function | ValueFunctionDefinition | The function. |
77+
| functionType | Type | The type of the function. |
78+
79+
80+
### Register(LogicalFunctionDefinition function, Type functionType)
81+
82+
Registers a new function implementation, allowing it to be parsed.
83+
84+
#### Declaration
85+
86+
```c#
87+
public static void Register(LogicalFunctionDefinition function, Type functionType)
88+
```
89+
90+
| Parameter | Type | Description |
91+
|---|---|---|
92+
| function | LogicalFunctionDefinition | The function. |
93+
| functionType | Type | The type of the function. |
94+
95+
96+
### Register(NodelistFunctionDefinition function, Type functionType)
97+
98+
Registers a new function implementation, allowing it to be parsed.
99+
100+
#### Declaration
101+
102+
```c#
103+
public static void Register(NodelistFunctionDefinition function, Type functionType)
104+
```
105+
106+
| Parameter | Type | Description |
107+
|---|---|---|
108+
| function | NodelistFunctionDefinition | The function. |
109+
| functionType | Type | The function type. |
110+
111+
112+
### RegisterLogicalFunction()
113+
114+
Registers a new function implementation, allowing it to be parsed.
115+
116+
#### Declaration
117+
118+
```c#
119+
public static void RegisterLogicalFunction()
120+
```
121+
122+
123+
### RegisterNodelistFunction()
124+
125+
Registers a new function implementation, allowing it to be parsed.
126+
127+
#### Declaration
128+
129+
```c#
130+
public static void RegisterNodelistFunction()
131+
```
132+
133+
134+
### RegisterValueFunction()
135+
136+
Registers a new function implementation, allowing it to be parsed.
137+
138+
#### Declaration
139+
140+
```c#
141+
public static void RegisterValueFunction()
142+
```
143+
144+
64145
### TryGet(string name, out IPathFunctionDefinition function)
65146

66147
Gets a function implementation by name.

_docs/api/JsonPath.Net/title.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ bookmark: JsonPath.Net
44
permalink: /api/JsonPath.Net/:title/
55
folder: true
66
order: "10.08"
7-
version: "1.0.5"
7+
version: "1.1.0"
88
---

_docs/release-notes/rn-json-path.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ title: JsonPath.Net
44
icon: fas fa-tag
55
order: "09.08"
66
---
7+
# [1.1.0](https://github.com/gregsdennis/json-everything/pull/740) {#release-path-1.1.0}
8+
9+
[#738](https://github.com/gregsdennis/json-everything/issues/738) - Adds additional support for AOT and trimming. Thanks to [@jevansaks](https://github.com/jevansaks) for implementing this update.
10+
711
# [1.0.5](https://github.com/gregsdennis/json-everything/commit/3dac71f99ae3958482bfe9dc32e098a234a91c11) {#release-path-1.0.5}
812

913
An update to the test suite revealed an issue with the filter expression parser.

0 commit comments

Comments
 (0)