System.Diagnostics.RemoteExecutorTestBase.RemoteInvokeRaw C# (CSharp) Метод

RemoteInvokeRaw() статический приватный Метод

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.
Результат RemoteInvokeHandle
        internal static RemoteInvokeHandle RemoteInvokeRaw(Delegate method, string unparsedArg,
            RemoteInvokeOptions options = null)
        {
            return RemoteInvoke(method.GetMethodInfo(), new[] { unparsedArg }, options);
        }
RemoteExecutorTestBase