Ejemplo n.º 1
0
 public static IPCHandler GetHandler()
 {
     if (handler == null)
     {
         handler = new IPCHandler();
     }
     return(handler);
 }
Ejemplo n.º 2
0
 private void setupThisForm()
 {
     ipcHandler = new IPCHandler(SendReceiveApp.SENDER);
 }
Ejemplo n.º 3
0
 public void Send(string data)
 {
     IPCHandler.Receive(data);
 }
Ejemplo n.º 4
0
 private void setupThisForm()
 {
     communicator = new IPCHandler(SendReceiveApp.RECEIVER);
     communicator.dataWrittenToMemory += Communicator_dataWrittenToMemory;
 }