JsonPatchDocument.Move(String, String) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
移除位於指定位置的值,並將其新增至目標位置。 將會產生 ,例如: { 「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。