Beispiel #1
0
 public SIPCServer(string uniquename, object serverinstance)
 {
     serverimpl = new SIPCServerImpl(uniquename, serverinstance);
     evtserver  = new EventWaitHandle(false, EventResetMode.AutoReset, uniquename);
     Name       = uniquename;
     thread     = new Thread(MessagePump);
 }
Beispiel #2
0
 public SIPCServer(string uniquename, object serverinstance)
     : base(uniquename, null)
 {
     serverimpl = new SIPCServerImpl(uniquename, serverinstance);
     DoAction   = new Action(serverimpl.process);
 }