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