JsonPatchDocument.Move(String, String) 메서드

정의

지정된 위치에서 값을 제거하고 대상 위치에 추가합니다. 예를 들어 { "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

매개 변수

from
String

원본 위치

path
String

대상 위치

반환

연결할 JsonPatchDocument입니다.

적용 대상