Base:
property
Arguments
Microsoft.AspNetCore.Http.EndpointFilterInvocationContext.Arguments
1 write to Arguments
Microsoft.AspNetCore.Mvc.Core (1)
Infrastructure\ControllerEndpointFilterInvocationContext.cs (1)
27Arguments = arguments ?? Array.Empty<object?>();
9 references to Arguments
Microsoft.AspNetCore.Mvc.Core (9)
Infrastructure\ActionMethodExecutor.cs (8)
111var arguments = (object[])invocationContext.Arguments; 142var arguments = (object[])invocationContext.Arguments; 175var arguments = (object[])invocationContext.Arguments; 206var arguments = (object[])invocationContext.Arguments; 234var arguments = (object[])invocationContext.Arguments; 270var arguments = (object[])invocationContext.Arguments; 307var arguments = (object[])invocationContext.Arguments; 344var arguments = (object[])invocationContext.Arguments;
Infrastructure\ControllerEndpointFilterInvocationContext.cs (1)
46return (T)Arguments[index]!;