共用方式為


JsonPatchDocument.Add(String, Object) 方法

定義

新增作業。 將會導致 { 「op」: 「add」, 「path」: 「/a/b/c」, 「value」: [ 「foo」, 「bar」 ] }

public:
 Microsoft::AspNetCore::JsonPatch::JsonPatchDocument ^ Add(System::String ^ path, System::Object ^ value);
public Microsoft.AspNetCore.JsonPatch.JsonPatchDocument Add (string path, object value);
member this.Add : string * obj -> Microsoft.AspNetCore.JsonPatch.JsonPatchDocument
Public Function Add (path As String, value As Object) As JsonPatchDocument

參數

path
String

目標位置

value
Object

value

傳回

用於鏈結的 JsonPatchDocument

適用於