12 overrides of Arguments
Microsoft.AspNetCore.Http.Abstractions (11)
DefaultEndpointFilterInvocationContext.cs (1)
27public override IList<object?> Arguments { get; }
EndpointFilterInvocationContextOfT.Generated.cs (10)
42public override IList<object?> Arguments => this; 169public override IList<object?> Arguments => this; 303public override IList<object?> Arguments => this; 444public override IList<object?> Arguments => this; 592public override IList<object?> Arguments => this; 747public override IList<object?> Arguments => this; 909public override IList<object?> Arguments => this; 1078public override IList<object?> Arguments => this; 1254public override IList<object?> Arguments => this; 1437public override IList<object?> Arguments => this;
Microsoft.AspNetCore.Mvc.Core (1)
Infrastructure\ControllerEndpointFilterInvocationContext.cs (1)
42public override IList<object?> Arguments { get; }
3 references to Arguments
Microsoft.AspNetCore.Http.Extensions (1)
RequestDelegateFactory.cs (1)
117private static readonly MemberExpression FilterContextArgumentsExpr = Expression.Property(FilterContextExpr, typeof(EndpointFilterInvocationContext).GetProperty(nameof(EndpointFilterInvocationContext.Arguments))!);
Microsoft.AspNetCore.Routing (2)
ValidationEndpointFilterFactory.cs (2)
65if (entry.Index >= context.Arguments.Count) 70var argument = context.Arguments[entry.Index];