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.SystemTextJson.JsonPatchDocument Remove(string path);
member this.Remove : string -> Microsoft.AspNetCore.JsonPatch.SystemTextJson.JsonPatchDocument
Public Function Remove (path As String) As JsonPatchDocument

Parameters

path
String

target location

Returns

The JsonPatchDocument for chaining.

Applies to