Пример #1
0
 public bool EjectDll(string processName, string dllPath)
 {
     using (var extensionWrapper = new ExtensionWrapper(processName, dllPath, RandomiseDllName))
     {
         return(extensionWrapper.EjectDll());
     }
 }
Пример #2
0
 public bool EjectDll(string processName, byte[] dllBytes)
 {
     using (var extensionWrapper = new ExtensionWrapper(processName, dllBytes, RandomiseDllName))
     {
         return(extensionWrapper.EjectDll());
     }
 }
Пример #3
0
        public bool EjectDll(int processId, byte[] dllBytes)
        {
            var extensionWrapper = new ExtensionWrapper(processId, dllBytes);

            return(extensionWrapper.EjectDll());
        }
Пример #4
0
        public bool EjectDll(string processName, byte[] dllBytes)
        {
            var extensionWrapper = new ExtensionWrapper(processName, dllBytes);

            return(extensionWrapper.EjectDll());
        }
Пример #5
0
        public bool EjectDll(int processId, string dllPath)
        {
            var extensionWrapper = new ExtensionWrapper(processId, dllPath);

            return(extensionWrapper.EjectDll());
        }
Пример #6
0
        public bool EjectDll(string processName, string dllPath)
        {
            var extensionWrapper = new ExtensionWrapper(processName, dllPath);

            return(extensionWrapper.EjectDll());
        }