7 instantiations of ApiRequestFormat
Microsoft.AspNetCore.Mvc.ApiExplorer (3)
DefaultApiDescriptionProvider.cs (2)
154apiDescription.SupportedRequestFormats.Add(new ApiRequestFormat 456results.Add(new ApiRequestFormat()
EndpointMetadataApiDescriptionProvider.cs (1)
159supportedRequestFormats.Add(new ApiRequestFormat
Microsoft.AspNetCore.OpenApi (4)
Services\OpenApiDocumentService.cs (4)
689supportedRequestFormats = [new ApiRequestFormat { MediaType = "application/x-www-form-urlencoded" }]; 853supportedRequestFormats = [new ApiRequestFormat { MediaType = "application/octet-stream" }]; 859supportedRequestFormats = [new ApiRequestFormat { MediaType = "application/json-patch+json" }]; 865supportedRequestFormats = [new ApiRequestFormat { MediaType = "application/json" }];
10 references to ApiRequestFormat
Microsoft.AspNetCore.Mvc.Abstractions (2)
ApiExplorer\ApiDescription.cs (2)
57public IList<ApiRequestFormat> SupportedRequestFormats { get; } = new List<ApiRequestFormat>();
Microsoft.AspNetCore.Mvc.ApiExplorer (4)
DefaultApiDescriptionProvider.cs (3)
144foreach (var format in requestFormats) 433private IReadOnlyList<ApiRequestFormat> GetSupportedFormats(MediaTypeCollection contentTypes, Type type) 443var results = new List<ApiRequestFormat>();
Properties\AssemblyInfo.cs (1)
11[assembly: TypeForwardedTo(typeof(Microsoft.AspNetCore.Mvc.ApiExplorer.ApiRequestFormat))]
Microsoft.AspNetCore.OpenApi (4)
Services\OpenApiDocumentService.cs (4)
678IList<ApiRequestFormat> supportedRequestFormats, 827foreach (var requestFormat in supportedRequestFormats) 841IList<ApiRequestFormat> supportedRequestFormats, 876foreach (var requestFormat in supportedRequestFormats)