1 instantiation of RemoteInvokeHandle
Microsoft.DotNet.RemoteExecutor (1)
RemoteExecutor.cs (1)
415return new RemoteInvokeHandle(options.Start ? Process.Start(psi) : new Process() { StartInfo = psi },
36 references to RemoteInvokeHandle
Microsoft.AspNetCore.Components.Tests (1)
ParameterViewTest.Assignment.cs (1)
610using var remoteHandle = RemoteExecutor.Invoke(static () =>
Microsoft.AspNetCore.Http.Extensions.Tests (4)
JsonOptionsTests.cs (2)
20using var remoteHandle = RemoteExecutor.Invoke(static () => 38using var remoteHandle = RemoteExecutor.Invoke(static () =>
RequestDelegateFactoryTests.cs (2)
3219using var remoteHandle = RemoteExecutor.Invoke(static () => 3239using var remoteHandle = RemoteExecutor.Invoke(static () =>
Microsoft.AspNetCore.Http.Results.Tests (4)
ResultsOfTHelperTests.cs (4)
23using var remoteHandle = RemoteExecutor.Invoke(static () => 40using var remoteHandle = RemoteExecutor.Invoke(static () => 57using var remoteHandle = RemoteExecutor.Invoke(static () => 72using var remoteHandle = RemoteExecutor.Invoke(static () =>
Microsoft.AspNetCore.Mvc.Core.Test (3)
Formatters\SystemTextJsonOutputFormatterTest.cs (1)
278using var remoteHandle = RemoteExecutor.Invoke(static () =>
JsonOptionsTest.cs (2)
19using var remoteHandle = RemoteExecutor.Invoke(static () => 37using var remoteHandle = RemoteExecutor.Invoke(static () =>
Microsoft.AspNetCore.Tests (3)
WebApplicationTests.cs (3)
644using var remoteHandle = RemoteExecutor.Invoke(static () => 669using var remoteHandle = RemoteExecutor.Invoke(static () => 1020using var remoteHandle = RemoteExecutor.Invoke(static () =>
Microsoft.DotNet.RemoteExecutor (21)
RemoteExecutor.cs (21)
112public static RemoteInvokeHandle Invoke(Action method, RemoteInvokeOptions options = null) 125public static RemoteInvokeHandle Invoke(Action<string> method, string arg, RemoteInvokeOptions options = null) 137public static RemoteInvokeHandle Invoke(Action<string, string> method, string arg1, string arg2, 150public static RemoteInvokeHandle Invoke(Action<string, string, string> method, string arg1, string arg2, 163public static RemoteInvokeHandle Invoke(Action<string, string, string, string> method, string arg1, 176public static RemoteInvokeHandle Invoke(Func<Task<int>> method, RemoteInvokeOptions options = null) 185public static RemoteInvokeHandle Invoke(Func<string, Task<int>> method, string arg, 196public static RemoteInvokeHandle Invoke(Func<string, string, Task<int>> method, string arg1, string arg2, 208public static RemoteInvokeHandle Invoke(Func<string, string, string, Task<int>> method, string arg1, 217public static RemoteInvokeHandle Invoke(Func<Task> method, RemoteInvokeOptions options = null) 230public static RemoteInvokeHandle Invoke(Func<string, Task> method, string arg, 245public static RemoteInvokeHandle Invoke(Func<string, string, Task> method, string arg1, string arg2, 261public static RemoteInvokeHandle Invoke(Func<string, string, string, Task> method, string arg1, 274public static RemoteInvokeHandle Invoke(Func<int> method, RemoteInvokeOptions options = null) 283public static RemoteInvokeHandle Invoke(Func<string, int> method, string arg, 294public static RemoteInvokeHandle Invoke(Func<string, string, int> method, string arg1, string arg2, 306public static RemoteInvokeHandle Invoke(Func<string, string, string, int> method, string arg1, 319public static RemoteInvokeHandle Invoke(Func<string, string, string, string, int> method, string arg1, 333public static RemoteInvokeHandle Invoke(Func<string, string, string, string, string, int> method, 343public static RemoteInvokeHandle InvokeRaw(Delegate method, string unparsedArg, 354private static RemoteInvokeHandle Invoke(MethodInfo method, string[] args,