共用方式為


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

適用於