5 overrides of Invoke
System.Private.CoreLib (2)
System\Reflection\Runtime\MethodInfos\CustomMethodInvoker.cs (1)
27protected internal sealed override object? Invoke(object? thisObject, Span<object?> arguments) =>
System\Reflection\Runtime\MethodInfos\OpenMethodInvoker.cs (1)
37protected internal sealed override object? Invoke(object? thisObject, Span<object?> arguments)
System.Private.Reflection.Execution (3)
Internal\Reflection\Execution\MethodInvokers\InstanceMethodInvoker.cs (1)
62protected sealed override object? Invoke(object? thisObject, Span<object?> arguments)
Internal\Reflection\Execution\MethodInvokers\StaticMethodInvoker.cs (1)
34protected sealed override object? Invoke(object? thisObject, Span<object?> arguments)
Internal\Reflection\Execution\MethodInvokers\VirtualMethodInvoker.cs (1)
78protected sealed override object? Invoke(object? thisObject, Span<object?> arguments)
1 reference to Invoke
System.Private.CoreLib (1)
System\Reflection\MethodInvoker.cs (1)
132object? result = _methodBaseInvoker.Invoke(obj, arguments);