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