public bool EjectDll(string processName, string dllPath) { using (var extensionWrapper = new ExtensionWrapper(processName, dllPath, RandomiseDllName)) { return(extensionWrapper.EjectDll()); } }
public bool EjectDll(string processName, byte[] dllBytes) { using (var extensionWrapper = new ExtensionWrapper(processName, dllBytes, RandomiseDllName)) { return(extensionWrapper.EjectDll()); } }
public bool EjectDll(int processId, byte[] dllBytes) { var extensionWrapper = new ExtensionWrapper(processId, dllBytes); return(extensionWrapper.EjectDll()); }
public bool EjectDll(string processName, byte[] dllBytes) { var extensionWrapper = new ExtensionWrapper(processName, dllBytes); return(extensionWrapper.EjectDll()); }
public bool EjectDll(int processId, string dllPath) { var extensionWrapper = new ExtensionWrapper(processId, dllPath); return(extensionWrapper.EjectDll()); }
public bool EjectDll(string processName, string dllPath) { var extensionWrapper = new ExtensionWrapper(processName, dllPath); return(extensionWrapper.EjectDll()); }