Click or drag to resize

RemoteHookingInject Method (Int32, String, String, Object)

Namespace:  EasyHook
Assembly:  EasyHook (in EasyHook.dll) Version: 2.7.6684.0 (2.7.6684.0)
Syntax
public static void Inject(
	int InTargetPID,
	string InLibraryPath_x86,
	string InLibraryPath_x64,
	params Object[] InPassThruArgs
)

Parameters

InTargetPID
Type: SystemInt32
The target process ID.
InLibraryPath_x86
Type: SystemString
A partially qualified assembly name or a relative/absolute file path of the 32-bit version of your library. For example "MyAssembly, PublicKeyToken=248973975895496" or ".\Assemblies\MyAssembly.dll".
InLibraryPath_x64
Type: SystemString
A partially qualified assembly name or a relative/absolute file path of the 64-bit version of your library. For example "MyAssembly, PublicKeyToken=248973975895496" or ".\Assemblies\MyAssembly.dll".
InPassThruArgs
Type: SystemObject
A serializable list of parameters being passed to your library entry points Run() and constructor (see IEntryPoint).
See Also