JsonPatchDocument.Move(String, String) Method
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.
Removes value at specified location and add it to the target location. Will result in, for example: { "op": "move", "from": "/a/b/c", "path": "/a/b/d" }
public:
Microsoft::AspNetCore::JsonPatch::JsonPatchDocument ^ Move(System::String ^ from, System::String ^ path);
public Microsoft.AspNetCore.JsonPatch.JsonPatchDocument Move (string from, string path);
member this.Move : string * string -> Microsoft.AspNetCore.JsonPatch.JsonPatchDocument
Public Function Move (from As String, path As String) As JsonPatchDocument
Parameters
- from
- String
source location
- path
- String
target location
Returns
The JsonPatchDocument for chaining.