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

Same methods

RemoteExecutorTestBase::RemoteInvoke ( Func method, 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