1 instantiation of JsonPatchDocument
Microsoft.AspNetCore.JsonPatch (1)
Converters\JsonPatchDocumentConverter.cs (1)
55
var container = new
JsonPatchDocument
(targetOperations, DefaultContractResolver);
14 references to JsonPatchDocument
Microsoft.AspNetCore.JsonPatch (14)
Converters\JsonPatchDocumentConverter.cs (2)
25
if (objectType != typeof(
JsonPatchDocument
))
55
var
container = new JsonPatchDocument(targetOperations, DefaultContractResolver);
JsonPatchDocument.cs (12)
49
/// <returns>The <see cref="
JsonPatchDocument
"/> for chaining.</returns>
50
public
JsonPatchDocument
Add(string path, object value)
63
/// <returns>The <see cref="
JsonPatchDocument
"/> for chaining.</returns>
64
public
JsonPatchDocument
Remove(string path)
78
/// <returns>The <see cref="
JsonPatchDocument
"/> for chaining.</returns>
79
public
JsonPatchDocument
Replace(string path, object value)
93
/// <returns>The <see cref="
JsonPatchDocument
"/> for chaining.</returns>
94
public
JsonPatchDocument
Test(string path, object value)
108
/// <returns>The <see cref="
JsonPatchDocument
"/> for chaining.</returns>
109
public
JsonPatchDocument
Move(string from, string path)
124
/// <returns>The <see cref="
JsonPatchDocument
"/> for chaining.</returns>
125
public
JsonPatchDocument
Copy(string from, string path)