1 write to HasJsonBodyOrQuery
Microsoft.AspNetCore.Http.RequestDelegateGenerator (1)
StaticRouteHandlerModel\EndpointParameter.cs (1)
256
endpoint.EmitterContext.
HasJsonBodyOrQuery
|= Source == EndpointParameterSource.JsonBodyOrQuery;
3 references to HasJsonBodyOrQuery
Microsoft.AspNetCore.Http.RequestDelegateGenerator (3)
RequestDelegateGenerator.cs (2)
175
var hasJsonBodyOrQuery = endpoints.Any(endpoint => endpoint.EmitterContext.
HasJsonBodyOrQuery
);
241
var hasJsonBody = endpoints.Any(endpoint => endpoint.EmitterContext.HasJsonBody || endpoint.EmitterContext.HasJsonBodyOrService || endpoint.EmitterContext.
HasJsonBodyOrQuery
);
StaticRouteHandlerModel\StaticRouteHandlerModel.Emitter.cs (1)
354
var hasJsonBody = endpoint.EmitterContext.HasJsonBody || endpoint.EmitterContext.HasJsonBodyOrService || endpoint.EmitterContext.
HasJsonBodyOrQuery
;