9 references to JsonPatchModel
Microsoft.AspNetCore.OpenApi.Tests (9)
Services\OpenApiDocumentService\OpenApiDocumentServiceTests.RequestBody.cs (9)
1273builder.MapPatch("/", (JsonPatchDocument<JsonPatchModel> patch) => { }); 1302builder.MapPatch("/", (JsonPatchDocument<JsonPatchModel>? patch) => { }); 1306builder.MapPatch("/", (JsonPatchDocument<JsonPatchModel> patch) => { }); 1328builder.MapPatch("/", ([FromBody] JsonPatchDocument<JsonPatchModel> patch) => { }); 1352builder.MapPatch("/", (JsonPatchDocument<JsonPatchModel> name) => { }) 1353.Accepts(typeof(JsonPatchDocument<JsonPatchModel>), "application/vnd.github.patch+json"); 1378builder.MapPatch("/", [Consumes(typeof(JsonPatchDocument<JsonPatchModel>), "application/vnd.github.patch+json")] (JsonPatchDocument<JsonPatchModel> patch) => { }); 1440builder.MapPatch("/", (CustomJsonPatchDocument<JsonPatchModel> patch) => { });