Base:
property
Arguments
Microsoft.AspNetCore.Http.EndpointFilterInvocationContext.Arguments
1 write to Arguments
Microsoft.AspNetCore.Mvc.Core (1)
Infrastructure\ControllerEndpointFilterInvocationContext.cs (1)
27
Arguments
= arguments ?? Array.Empty<object?>();
10 references to Arguments
Microsoft.AspNetCore.Mvc.Core (9)
Infrastructure\ActionMethodExecutor.cs (8)
111
var arguments = (object[])invocationContext.
Arguments
;
142
var arguments = (object[])invocationContext.
Arguments
;
175
var arguments = (object[])invocationContext.
Arguments
;
206
var arguments = (object[])invocationContext.
Arguments
;
234
var arguments = (object[])invocationContext.
Arguments
;
270
var arguments = (object[])invocationContext.
Arguments
;
307
var arguments = (object[])invocationContext.
Arguments
;
344
var arguments = (object[])invocationContext.
Arguments
;
Infrastructure\ControllerEndpointFilterInvocationContext.cs (1)
46
return (T)
Arguments
[index]!;
Microsoft.AspNetCore.Mvc.Core.Test (1)
Infrastructure\ActionMethodExecutorTest.cs (1)
447
return await actionMethodExecutor.Execute(context.ActionContext, context.Mapper, context.Executor, context.Controller, (object[])context.
Arguments
);