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, string arg1, string arg2, string arg3, RemoteInvokeOptions options = null ) : RemoteInvokeHandle
method Func The method to invoke.
arg1 string The first argument to pass to the method.
arg2 string The second argument to pass to the method.
arg3 string The third argument to pass to the method.
options RemoteInvokeOptions Options to use for the invocation.
return RemoteInvokeHandle
        internal static RemoteInvokeHandle RemoteInvoke(
            Func<string, string, string, int> method, 
            string arg1, string arg2, string arg3, 
            RemoteInvokeOptions options = null)
        {
            return RemoteInvoke(method.GetMethodInfo(), new[] { arg1, arg2, arg3 }, options);
        }

Same methods

RemoteExecutorTestBase::RemoteInvoke ( Func method, RemoteInvokeOptions options = null ) : RemoteInvokeHandle
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 ( MethodInfo method, string args, RemoteInvokeOptions options ) : RemoteInvokeHandle
RemoteExecutorTestBase