Esempio n. 1
0
 public void ExecuteRemoteFunction(IRemoteFunctionCall call, bool waitForThreadExit)
 {
     ExecuteAssemblyWithArguments(call.FunctionName, call.Arguments.Serialize(), waitForThreadExit);
 }
Esempio n. 2
0
 public void CreateThread(IRemoteFunctionCall call, bool waitForThreadExit = true)
 {
     _threadCreator.ExecuteRemoteFunction(call, waitForThreadExit);
 }
Esempio n. 3
0
 public void ExecuteRemoteFunction(Process process, IRemoteFunctionCall call)
 => ExecuteWithArguments(process, call.FunctionName, call.Arguments);