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