5 overrides of InvokeDirectWithFewArgs
System.Private.CoreLib (2)
System\Reflection\Runtime\MethodInfos\CustomMethodInvoker.cs (1)
30
protected internal sealed override object?
InvokeDirectWithFewArgs
(object? thisObject, Span<object?> arguments) =>
System\Reflection\Runtime\MethodInfos\OpenMethodInvoker.cs (1)
42
protected internal sealed override object?
InvokeDirectWithFewArgs
(object? thisObject, Span<object?> arguments)
System.Private.Reflection.Execution (3)
Internal\Reflection\Execution\MethodInvokers\InstanceMethodInvoker.cs (1)
78
protected sealed override object?
InvokeDirectWithFewArgs
(object? thisObject, Span<object?> arguments)
Internal\Reflection\Execution\MethodInvokers\StaticMethodInvoker.cs (1)
45
protected sealed override object?
InvokeDirectWithFewArgs
(object? thisObject, Span<object?> arguments)
Internal\Reflection\Execution\MethodInvokers\VirtualMethodInvoker.cs (1)
97
protected sealed override object?
InvokeDirectWithFewArgs
(object? thisObject, Span<object?> arguments)
5 references to InvokeDirectWithFewArgs
System.Private.CoreLib (5)
System\Reflection\MethodInvoker.cs (5)
57
object? result = _methodBaseInvoker.
InvokeDirectWithFewArgs
(obj, default);
70
object? result = _methodBaseInvoker.
InvokeDirectWithFewArgs
(obj, new Span<object?>(ref arg1, _parameterCount));
87
object? result = _methodBaseInvoker.
InvokeDirectWithFewArgs
(obj, ((Span<object?>)argStorage._args).Slice(0, 2));
105
object? result = _methodBaseInvoker.
InvokeDirectWithFewArgs
(obj, ((Span<object?>)argStorage._args).Slice(0, 3));
124
object? result = _methodBaseInvoker.
InvokeDirectWithFewArgs
(obj, ((Span<object?>)argStorage._args).Slice(0, 4));