RemoteHookingInject Method (Int32, String, String, Object) | 
  
    Namespace: 
   EasyHook
    Assembly:
   EasyHook (in EasyHook.dll) Version: 2.7.6684.0 (2.7.6684.0)
Syntaxpublic static void Inject(
	int InTargetPID,
	string InLibraryPath_x86,
	string InLibraryPath_x64,
	params Object[] InPassThruArgs
)
Public Shared Sub Inject ( 
	InTargetPID As Integer,
	InLibraryPath_x86 As String,
	InLibraryPath_x64 As String,
	ParamArray InPassThruArgs As Object()
)
public:
static void Inject(
	int InTargetPID, 
	String^ InLibraryPath_x86, 
	String^ InLibraryPath_x64, 
	... array<Object^>^ InPassThruArgs
)
static member Inject : 
        InTargetPID : int * 
        InLibraryPath_x86 : string * 
        InLibraryPath_x64 : string * 
        InPassThruArgs : Object[] -> unit 
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