Share via


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

適用対象