8 references to InferMetadata
Microsoft.AspNetCore.Http.Extensions (5)
RequestDelegateFactory.cs (4)
168
/// The result returned from <see cref="
InferMetadata
(MethodInfo, RequestDelegateFactoryOptions?)"/> if that was used to inferring metadata before creating the final RequestDelegate.
170
/// <see cref="
InferMetadata
(MethodInfo, RequestDelegateFactoryOptions?)"/> would have inferred for the same <see cref="Delegate.Method"/> and populate <see cref="RequestDelegateFactoryOptions.EndpointBuilder"/>
220
/// The result returned from <see cref="
InferMetadata
(MethodInfo, RequestDelegateFactoryOptions?)"/> if that was used to inferring metadata before creating the final RequestDelegate.
222
/// <see cref="
InferMetadata
(MethodInfo, RequestDelegateFactoryOptions?)"/> would have inferred for the same <see cref="Delegate.Method"/> and populate <see cref="RequestDelegateFactoryOptions.EndpointBuilder"/>
RequestDelegateMetadataResult.cs (1)
7
/// The metadata inferred by <see cref="RequestDelegateFactory.
InferMetadata
(System.Reflection.MethodInfo, Microsoft.AspNetCore.Http.RequestDelegateFactoryOptions?)"/>.
Microsoft.AspNetCore.Http.Extensions.Tests (2)
RequestDelegateFactoryTests.cs (2)
2907
var metadataResult = RequestDelegateFactory.
InferMetadata
(@delegate.Method, options);
2928
var metadataResult = RequestDelegateFactory.
InferMetadata
(@delegate.Method, options);
Microsoft.AspNetCore.Routing (1)
Builder\EndpointRouteBuilderExtensions.cs (1)
439
.AddRouteHandler(pattern, handler, httpMethods, isFallback, RequestDelegateFactory.
InferMetadata
, RequestDelegateFactory.Create, handler.Method);