Share via


JsonPatchDocument.Copy(String, String) メソッド

定義

指定した場所にある値をターゲットの場所にコピーします。 次のようになります(例: { "op": "copy", "from": "/a/b/c", "path": "/a/b/e" }

public:
 Microsoft::AspNetCore::JsonPatch::JsonPatchDocument ^ Copy(System::String ^ from, System::String ^ path);
public Microsoft.AspNetCore.JsonPatch.JsonPatchDocument Copy (string from, string path);
member this.Copy : string * string -> Microsoft.AspNetCore.JsonPatch.JsonPatchDocument
Public Function Copy (from As String, path As String) As JsonPatchDocument

パラメーター

from
String

ソースの場所

path
String

ターゲットの場所

戻り値

チェーン用の JsonPatchDocument

適用対象