JsonPatchDocument.Remove(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.