4 writes to DisableInferBodyFromParameters
Microsoft.AspNetCore.Http.Extensions.Tests (2)
RequestDelegateFactoryTests.cs (2)
614var factoryResult = RequestDelegateFactory.Create(StoreNullableIntArray, new() { DisableInferBodyFromParameters = true }); 758var factoryResult = RequestDelegateFactory.Create(StoreNullableIntArray, new() { ThrowOnBadRequest = true, DisableInferBodyFromParameters = true });
Microsoft.AspNetCore.Mvc.ApiExplorer.Test (1)
EndpointMetadataApiDescriptionProviderTest.cs (1)
1547var options = new RequestDelegateFactoryOptions { ServiceProvider = serviceProvider, DisableInferBodyFromParameters = shouldDisableInferredBodyForMethod };
Microsoft.AspNetCore.Routing (1)
RouteEndpointDataSource.cs (1)
279DisableInferBodyFromParameters = ShouldDisableInferredBodyParameters(entry.HttpMethods),
1 reference to DisableInferBodyFromParameters
Microsoft.AspNetCore.Http.Extensions (1)
RequestDelegateFactory.cs (1)
286DisableInferredFromBody = options?.DisableInferBodyFromParameters ?? false,