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