Inheritance: 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
 public Main(RemoteHooking.IContext inContext, string inChannelName)
 {
     m_hookInterface = RemoteHooking.IpcConnectClient<HookInterface>(inChannelName);
     m_hookInterface.Ping();
 }