9 references to JsonPatchModel
Microsoft.AspNetCore.OpenApi.Tests (9)
Services\OpenApiDocumentService\OpenApiDocumentServiceTests.RequestBody.cs (9)
1269builder.MapPatch("/", (JsonPatchDocument<JsonPatchModel> patch) => { }); 1298builder.MapPatch("/", (JsonPatchDocument<JsonPatchModel>? patch) => { }); 1302builder.MapPatch("/", (JsonPatchDocument<JsonPatchModel> patch) => { }); 1324builder.MapPatch("/", ([FromBody] JsonPatchDocument<JsonPatchModel> patch) => { }); 1348builder.MapPatch("/", (JsonPatchDocument<JsonPatchModel> name) => { }) 1349.Accepts(typeof(JsonPatchDocument<JsonPatchModel>), "application/vnd.github.patch+json"); 1372builder.MapPatch("/", [Consumes(typeof(JsonPatchDocument<JsonPatchModel>), "application/vnd.github.patch+json")] (JsonPatchDocument<JsonPatchModel> patch) => { }); 1432builder.MapPatch("/", (CustomJsonPatchDocument<JsonPatchModel> patch) => { });