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