Ejemplo n.º 1
0
 public static void Connect(string pipeName)
 {
     Client = new MemoryMappedFileClient();
     Client.Start(pipeName);
 }
Ejemplo n.º 2
0
 private void StartClient_Click(object sender, RoutedEventArgs e)
 {
     client = new MemoryMappedFileClient();
     client.ReceivedEvent += Client_Received;
     client.Start("SamplePipeName");
 }