System.Diagnostics.RemoteExecutorTestBase.RemoteInvoke C# (CSharp) Method

RemoteInvoke() static private method

Invokes the method from this assembly in another process using the specified arguments.
static private RemoteInvoke ( Func method, RemoteInvokeOptions options = null ) : RemoteInvokeHandle
method Func The method to invoke.
options RemoteInvokeOptions Options to use for the invocation.
return RemoteInvokeHandle
        internal static RemoteInvokeHandle RemoteInvoke(
            Func<int> method, 
            RemoteInvokeOptions options = null)
        {
            return RemoteInvoke(method.GetMethodInfo(), Array.Empty<string>(), options);
        }

Same methods

RemoteExecutorTestBase::RemoteInvoke ( int>.Func method, string arg, RemoteInvokeOptions options = null ) : RemoteInvokeHandle
RemoteExecutorTestBase::RemoteInvoke ( Func method, string arg1, string arg2, RemoteInvokeOptions options = null ) : RemoteInvokeHandle
RemoteExecutorTestBase::RemoteInvoke ( Func method, string arg1, string arg2, string arg3, RemoteInvokeOptions options = null ) : RemoteInvokeHandle
RemoteExecutorTestBase::RemoteInvoke ( MethodInfo method, string args, RemoteInvokeOptions options ) : RemoteInvokeHandle
RemoteExecutorTestBase