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

RemoteInvokeRaw() static private method

Invokes the method from this assembly in another process using the specified arguments.
static private RemoteInvokeRaw ( Delegate method, string unparsedArg, RemoteInvokeOptions options = null ) : RemoteInvokeHandle
method Delegate The method to invoke.
unparsedArg string
options RemoteInvokeOptions Options to use for the invocation.
return RemoteInvokeHandle
        internal static RemoteInvokeHandle RemoteInvokeRaw(Delegate method, string unparsedArg,
            RemoteInvokeOptions options = null)
        {
            return RemoteInvoke(method.GetMethodInfo(), new[] { unparsedArg }, options);
        }
RemoteExecutorTestBase