File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed
_docs/api/JsonPointer.Net Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -78,16 +78,22 @@ A new pointer.
7878
7979### Combine(ReadOnlySpan\< PointerSegment\> additionalSegments)
8080
81+ Concatenates additional segments onto the current pointer.
8182
8283#### Declaration
8384
8485``` c#
8586public JsonPointer Combine (ReadOnlySpan < PointerSegment > additionalSegments )
8687```
8788
89+ | Parameter | Type | Description |
90+ | ---| ---| ---|
91+ | additionalSegments | ReadOnlySpan\< PointerSegment\> | The additional segments. |
92+
8893
8994#### Returns
9095
96+ A new pointer.
9197
9298### Create(params PointerSegment[ ] segments)
9399
@@ -114,16 +120,26 @@ This method creates un-encoded pointers only.
114120
115121### Create(ReadOnlySpan\< PointerSegment\> segments)
116122
123+ Creates a new JSON Pointer from a collection of segments.
117124
118125#### Declaration
119126
120127``` c#
121128public static JsonPointer Create (ReadOnlySpan < PointerSegment > segments )
122129```
123130
131+ | Parameter | Type | Description |
132+ | ---| ---| ---|
133+ | segments | ReadOnlySpan\< PointerSegment\> | A collection of segments. |
134+
124135
125136#### Returns
126137
138+ The JSON Pointer.
139+
140+ #### Remarks
141+
142+ This method creates un-encoded pointers only.
127143
128144### Create(Expression\< Func\< T, object\>\> expression, PointerCreationOptions options)
129145
You can’t perform that action at this time.
0 commit comments