상속: System.MarshalByRefObject
예제 #1
0
파일: Main.cs 프로젝트: kitokyo/XAPSpy
        public Main(
            RemoteHooking.IContext InContext,
            String InChannelName)
        {
            Interface = RemoteHooking.IpcConnectClient<HookInterface>(InChannelName);

            Interface.Ping();
        }
예제 #2
0
        public Main(
            RemoteHooking.IContext InContext,
            String InChannelName)
        {
            Interface = RemoteHooking.IpcConnectClient <HookInterface>(InChannelName);

            Interface.Ping();
        }
예제 #3
0
파일: Main.cs 프로젝트: andreycha/tangerine
 public Main(RemoteHooking.IContext inContext, string inChannelName)
 {
     m_hookInterface = RemoteHooking.IpcConnectClient<HookInterface>(inChannelName);
     m_hookInterface.Ping();
 }