1 write to JsonRequestBodyParameter
Microsoft.AspNetCore.Http.Extensions (1)
RequestDelegateFactory.cs (1)
2293factoryContext.JsonRequestBodyParameter = parameter;
7 references to JsonRequestBodyParameter
Microsoft.AspNetCore.Http.Extensions (7)
RequestDelegateFactory.cs (7)
677if (factoryContext.JsonRequestBodyParameter is not null && 1254if (factoryContext.JsonRequestBodyParameter is null && !factoryContext.ReadForm) 1295Debug.Assert(factoryContext.JsonRequestBodyParameter is not null, "factoryContext.JsonRequestBodyParameter is null for a JSON body."); 1297var bodyType = factoryContext.JsonRequestBodyParameter.ParameterType; 1299var parameterTypeName = TypeNameHelper.GetTypeDisplayName(factoryContext.JsonRequestBodyParameter.ParameterType, fullName: false); 1300var parameterName = factoryContext.JsonRequestBodyParameter.Name; 2277if (factoryContext.JsonRequestBodyParameter is not null)