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