Share via


JsonPatchDocument.Remove(String) Method

Definition

Remove value at target location. Will result in, for example, { "op": "remove", "path": "/a/b/c" }

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

Parameters

path
String

target location

Returns

The JsonPatchDocument for chaining.

Applies to