File tree 1 file changed +7
-1
lines changed
_docs/api/JsonPointer.Net
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ Represents a JSON Pointer IAW RFC 6901.
34
34
| ---| ---| ---|
35
35
| ** Count** | int | Gets the number of segments in the pointer. |
36
36
| ** Item** | string | Gets a segment value by index. |
37
- | ** Item** | JsonPointer | |
37
+ | ** Item** | JsonPointer | Creates a new pointer with the indicated segments. |
38
38
39
39
## Methods
40
40
@@ -246,16 +246,22 @@ A new pointer.
246
246
247
247
### GetSubPointer(Range range)
248
248
249
+ Creates a new pointer with the indicated segments.
249
250
250
251
#### Declaration
251
252
252
253
``` c#
253
254
public JsonPointer GetSubPointer (Range range )
254
255
```
255
256
257
+ | Parameter | Type | Description |
258
+ | ---| ---| ---|
259
+ | range | Range | The segment range for the new pointer. |
260
+
256
261
257
262
#### Returns
258
263
264
+ A new pointer.
259
265
260
266
### Parse(string source)
261
267
You can’t perform that action at this time.
0 commit comments